急に止まる
位置に吸い付く左50%の所から、滑るように入って止まる。
- 時間
- 0.28s
- くり返し
- しない
- 速さの変化
- cubic-bezier(.2,.8,.2,1)
- 動かすもの
- 位置・透明度 translate opacity
CSS を見る
@keyframes onoma-pita {
0% { transform: translate(-50%, 0%); opacity: 0; }
40% { transform: translate(-30%, 0%); opacity: 1; }
100% { transform: translate(0%, 0%); opacity: 1; }
}
.onoma-pita {
animation: onoma-pita 0.28s cubic-bezier(.2,.8,.2,1) both;
}
/* 動きを減らす設定の人には、現れるだけ */
@keyframes onoma-pita-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-pita { animation: onoma-pita-fade 0.2s ease-out both; }
}