足元がふらつき続ける
不安定な接続足元を軸に、ふらつきながら左右へ14%よろめき続ける。
- 時間
- 2.4s
- くり返し
- する
- 速さの変化
- ease-in-out
- 動かすもの
- 位置・回転 translate rotate
CSS を見る
@keyframes onoma-yoroyoro {
0% { transform: translate(-14%, 0%) rotate(-12deg); }
30% { transform: translate(5.6%, 0%) rotate(9.6deg); }
50% { transform: translate(-4.2%, 0%) rotate(-6deg); }
80% { transform: translate(14%, 0%) rotate(12deg); }
100% { transform: translate(-14%, 0%) rotate(-12deg); }
}
.onoma-yoroyoro {
animation: onoma-yoroyoro 2.4s ease-in-out infinite both;
transform-origin: 50% 100%;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-yoroyoro { animation: none; }
}