Whizz in
New item arrivesSwoops 180% in from the upper left along a curve and stops.
- Duration
- 0.36s
- Repeats
- No
- Easing
- cubic-bezier(.2,.8,.3,1)
- Animates
- Position · Rotation · Opacity translate rotate opacity
Show CSS
@keyframes onoma-pyun {
0% { transform: translate(-180%, -40%) rotate(-20deg); opacity: 0; }
30% { transform: translate(-103.5%, -30%) rotate(-12deg); opacity: 1; }
60% { transform: translate(-27%, -20%) rotate(-4deg); opacity: 1; }
100% { transform: translate(0%, 0%) rotate(0deg); opacity: 1; }
}
.onoma-pyun {
animation: onoma-pyun 0.36s cubic-bezier(.2,.8,.3,1) both;
}
/* Reduced motion: only fade in */
@keyframes onoma-pyun-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-pyun { animation: onoma-pyun-fade 0.2s ease-out both; }
}