Roll over smoothly
Reveal a resultRolls in from 120% to the left and eases to a stop.
- Duration
- 1.2s
- Repeats
- No
- Easing
- cubic-bezier(.2,.7,.3,1)
- Animates
- Position · Rotation translate rotate
Show CSS
@keyframes onoma-korori {
0% { transform: translate(-120%, 0%) rotate(-137.51deg); }
100% { transform: translate(0%, 0%) rotate(0deg); }
}
.onoma-korori {
animation: onoma-korori 1.2s cubic-bezier(.2,.7,.3,1) both;
}
/* Reduced motion: only fade in */
@keyframes onoma-korori-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-korori { animation: onoma-korori-fade 0.2s ease-out both; }
}