柔らかく揉める
さわった反応横と縦に16%ずつ、交互に伸び縮みし続ける。
- 時間
- 0.6s
- くり返し
- する
- 速さの変化
- ease-in-out
- 動かすもの
- 大きさ scale
CSS を見る
@keyframes onoma-munimuni {
0% { transform: scale(1.16, 0.84); }
100% { transform: scale(0.84, 1.16); }
}
.onoma-munimuni {
animation: onoma-munimuni 0.6s ease-in-out infinite alternate both;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-munimuni { animation: none; }
}