一枚だけ舞い落ちる
通知を静かに消す左右に2回、幅18%・傾き最大12°で揺れながら、下へ200%落ちて消える。
- 時間
- 1.8s
- くり返し
- しない
- 速さの変化
- ease-in-out
- 動かすもの
- 位置・回転・透明度 translate rotate opacity
CSS を見る
@keyframes onoma-harari {
0% { transform: translate(0%, 0%) rotate(0deg); opacity: 1; animation-timing-function: ease-in-out; }
50% { transform: translate(15.6%, 81.23%) rotate(10.4deg); opacity: 0.6; animation-timing-function: ease-in-out; }
100% { transform: translate(0%, 200%) rotate(-3.6deg); opacity: 0; animation-timing-function: ease-in-out; }
}
.onoma-harari {
animation: onoma-harari 1.8s ease-in-out both;
}
/* 動きを減らす設定の人には、消えるだけ */
@keyframes onoma-harari-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-harari { animation: onoma-harari-fade 0.2s ease-out both; }
}