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