A quick kiss
Like or affectionBeats up to 112%, beats once more smaller, then settles.
- Duration
- 0.36s
- Repeats
- No
- Easing
- ease-out
- Animates
- Scale scale
Show CSS
@keyframes onoma-chu {
0% { transform: scale(1, 1); }
20% { transform: scale(1.12, 1.12); }
40% { transform: scale(0.98, 0.98); }
60% { transform: scale(1.05, 1.05); }
100% { transform: scale(1, 1); }
}
.onoma-chu {
animation: onoma-chu 0.36s ease-out both;
}
/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
.onoma-chu { animation: none; }
}