Flow Animation Transitions
🏃 How it works ?
⌛ CSS Transitions
.ngs-survey__flow-section {
transition: transform .5s ease 0s,opacity .4s ease 0s;
}🖼️ Vertical (top to bottom) transition
.vertical.ngs-survey__flow-section--visible
{
opacity:1
}
.vertical.ngs-survey__flow-section--previous
{
transform:translateY(-50vh) translateZ(0);
opacity:0
}
.vertical.ngs-survey__flow-section--next
{
transform:translateY(100vh) translateZ(0);
opacity:0
}🖼️ Horizontal (Left to right) transition
🖼️ Fade in / out transition
Last updated
Was this helpful?