0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

自分用まとめ

拡大

transform: scale( 倍率値 );
値 >1 は拡大
値 <1 は縮小

移動(XY軸)

transform: translate( 時間 );
時間の単位は s か ms

アニメーション時間の設定

これがあるとスムーズに動かせる

transition-duration: ;
アニメーション時間
時間の単位は s か ms

transition-delay: ;
アニメーション開始までの時間
時間の単位は s か ms

transition-property: ; ★
アニメーションさせるプロパティの指定
color all

transition-timing-function: ; ★
アニメーション速度の変化
ease 他

★の二つはduration, delayどちらかを指定したうえで使用

参考サイト

元サイト様に感謝。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?