Flow along fluently
Typing flows alongGlides 60% each way, smoothly, forever.
- Duration
- 0.8s
- Repeats
- Yes
- Easing
- ease-in-out
- Animates
- Position translate
Show CSS
@keyframes onoma-surasura {
0% { transform: translate(-60%, 0%); }
100% { transform: translate(60%, 0%); }
}
.onoma-surasura {
animation: onoma-surasura 0.8s ease-in-out infinite alternate both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-surasura { animation: none; }
}