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