水面が小さく揺れる
水・お風呂の表現上下5%ずつ、少し傾きながらゆっくり浮かび続ける。
- 時間
- 1s
- くり返し
- する
- 速さの変化
- ease-in-out
- 動かすもの
- 位置・回転 translate rotate
CSS を見る
@keyframes onoma-chapuchapu {
0% { transform: translate(0%, 5%) rotate(-5deg); }
100% { transform: translate(0%, -5%) rotate(5deg); }
}
.onoma-chapuchapu {
animation: onoma-chapuchapu 1s ease-in-out infinite alternate both;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-chapuchapu { animation: none; }
}