重い物が落ちる
まとめて追加する上150%から加速して落ち、着地で30%つぶれて止まる。
- 時間
- 0.5s
- くり返し
- しない
- 速さの変化
- cubic-bezier(.55,0,1,.45)
- 動かすもの
- 位置・大きさ translate scale
CSS を見る
@keyframes onoma-dosa {
0% { transform: translate(0%, -150%) scale(1, 1); animation-timing-function: cubic-bezier(.55,0,1,.45); }
62% { transform: translate(0%, 0%) scale(1.3, 0.7); animation-timing-function: ease-out; }
80% { transform: translate(0%, 0%) scale(0.94, 1.06); }
100% { transform: translate(0%, 0%) scale(1, 1); }
}
.onoma-dosa {
animation: onoma-dosa 0.5s cubic-bezier(.55,0,1,.45) both;
}
/* 動きを減らす設定の人には、現れるだけ */
@keyframes onoma-dosa-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-dosa { animation: onoma-dosa-fade 0.2s ease-out both; }
}