鈴が鳴り続ける
お祝いの演出10%しぼんで光が弱まり、また輝くのをくり返す。
- 時間
- 0.8s
- くり返し
- する
- 速さの変化
- ease-in-out
- 動かすもの
- 回転・大きさ・透明度 rotate scale opacity
CSS を見る
@keyframes onoma-shanshan {
0% { transform: rotate(0deg) scale(1, 1); opacity: 1; }
50% { transform: rotate(20deg) scale(0.9, 0.9); opacity: 0.85; }
100% { transform: rotate(0deg) scale(1, 1); opacity: 1; }
}
.onoma-shanshan {
animation: onoma-shanshan 0.8s ease-in-out infinite both;
}
/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
.onoma-shanshan { animation: none; }
}