Gaze intently
Look closely at detailsLeans 15° from its bottom edge, holds, then straightens up.
- Duration
- 1.66s
- Repeats
- No
- Easing
- ease-in-out
- Animates
- Rotation rotate
Show CSS
@keyframes onoma-shigeshige {
0% { transform: rotate(0deg); }
35% { transform: rotate(15deg); }
65% { transform: rotate(15deg); }
100% { transform: rotate(0deg); }
}
.onoma-shigeshige {
animation: onoma-shigeshige 1.66s ease-in-out both;
transform-origin: 50% 100%;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-shigeshige { animation: none; }
}