Drop by casually
Casual pop-inSwings in from 30° on its top edge and gradually settles.
- Duration
- 1.4s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation · Opacity rotate opacity
Show CSS
@keyframes onoma-burari {
0% { transform: rotate(-30deg); opacity: 0; }
10% { transform: rotate(-16.71deg); opacity: 1; }
35% { transform: rotate(16.5deg); opacity: 1; }
55% { transform: rotate(-8.4deg); opacity: 1; }
75% { transform: rotate(3.6deg); opacity: 1; }
90% { transform: rotate(-1.2deg); opacity: 1; }
100% { transform: rotate(0deg); opacity: 1; }
}
.onoma-burari {
animation: onoma-burari 1.4s ease-in-out both;
transform-origin: 50% 0%;
}
/* Reduced motion: only fade in */
@keyframes onoma-burari-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-burari { animation: onoma-burari-fade 0.2s ease-out both; }
}