軽くキスする
いいね・好意112%まで大きく脈打ち、もう一度小さく打ってから元に戻る。
- 時間
- 0.36s
- くり返し
- しない
- 速さの変化
- ease-out
- 動かすもの
- 大きさ scale
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;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-chu { animation: none; }
}