Skim along in an arc
Glide in lightlySwoops 100% in from the upper left along a curve and stops.
- Duration
- 0.5s
- Repeats
- No
- Easing
- cubic-bezier(.2,.8,.3,1)
- Animates
- Position · Rotation · Opacity translate rotate opacity
Show CSS
@keyframes onoma-sui {
0% { transform: translate(-100%, -30%) rotate(-20deg); opacity: 0; }
30% { transform: translate(-57.5%, -22.5%) rotate(-12deg); opacity: 1; }
60% { transform: translate(-15%, -15%) rotate(-4deg); opacity: 1; }
100% { transform: translate(0%, 0%) rotate(0deg); opacity: 1; }
}
.onoma-sui {
animation: onoma-sui 0.5s cubic-bezier(.2,.8,.3,1) both;
}
/* Reduced motion: only fade in */
@keyframes onoma-sui-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-sui { animation: onoma-sui-fade 0.2s ease-out both; }
}