Swing round into view
Bring in a new itemSpins 1 turn(s) as it grows from a point to full size.
- Duration
- 0.9s
- Repeats
- No
- Easing
- cubic-bezier(.2,.8,.3,1)
- Animates
- Rotation · Scale · Opacity rotate scale opacity
Show CSS
@keyframes onoma-gurun {
0% { transform: rotate(-360deg) scale(0, 0); opacity: 0; }
30% { transform: rotate(-252deg) scale(0.3, 0.3); opacity: 1; }
100% { transform: rotate(0deg) scale(1, 1); opacity: 1; }
}
.onoma-gurun {
animation: onoma-gurun 0.9s cubic-bezier(.2,.8,.3,1) both;
}
/* Reduced motion: only fade in */
@keyframes onoma-gurun-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-gurun { animation: onoma-gurun-fade 0.2s ease-out both; }
}