Unravel smoothly
Graceful entranceSpins 1.5 turn(s) as it grows from a point to full size.
- Duration
- 1.06s
- Repeats
- No
- Easing
- cubic-bezier(.2,.8,.3,1)
- Animates
- Rotation · Scale · Opacity rotate scale opacity
Show CSS
@keyframes onoma-shururi {
0% { transform: rotate(-540deg) scale(0, 0); opacity: 0; }
30% { transform: rotate(-378deg) scale(0.3, 0.3); opacity: 1; }
100% { transform: rotate(0deg) scale(1, 1); opacity: 1; }
}
.onoma-shururi {
animation: onoma-shururi 1.06s cubic-bezier(.2,.8,.3,1) both;
}
/* Reduced motion: only fade in */
@keyframes onoma-shururi-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-shururi { animation: onoma-shururi-fade 0.2s ease-out both; }
}