よくしゃべる
会話中・入力中横と縦に3%ずつ、交互に伸び縮みし続ける。
- 時間
- 0.26s
- くり返し
- する
- 速さの変化
- ease-in-out
- 動かすもの
- 大きさ scale
CSS を見る
@keyframes onoma-pechakucha {
0% { transform: scale(1.03, 0.97); }
100% { transform: scale(0.97, 1.03); }
}
.onoma-pechakucha {
animation: onoma-pechakucha 0.26s ease-in-out infinite alternate both;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-pechakucha { animation: none; }
}