Shot through the heart
Love at first sightZooms from 0% scale straight to full size.
- Duration
- 0.3s
- Repeats
- No
- Easing
- cubic-bezier(.2,.9,.3,1)
- Animates
- Scale · Opacity scale opacity
Show CSS
@keyframes onoma-bakyuun {
0% { transform: scale(0, 0); opacity: 0; }
60% { transform: scale(0.6, 0.6); opacity: 1; }
100% { transform: scale(1, 1); opacity: 1; }
}
.onoma-bakyuun {
animation: onoma-bakyuun 0.3s cubic-bezier(.2,.9,.3,1) both;
}
/* Reduced motion: only fade in */
@keyframes onoma-bakyuun-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-bakyuun { animation: onoma-bakyuun-fade 0.2s ease-out both; }
}