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