湿気がまとわりつく
重苦しい待ち時間上を留めたまま、下へ15%とろりと垂れては戻る。
- 時間
- 3s
- くり返し
- する
- 速さの変化
- ease-in-out
- 動かすもの
- ゆがみ・大きさ skewY scale
CSS を見る
@keyframes onoma-jitojito {
0% { transform: skewY(0deg) scale(1, 1); }
100% { transform: skewY(4deg) scale(0.96, 1.15); }
}
.onoma-jitojito {
animation: onoma-jitojito 3s ease-in-out infinite alternate both;
transform-origin: 50% 0%;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-jitojito { animation: none; }
}