3次ベジェ曲線アニメクラス
3次ベジェ曲線アニメクラス CSS ファイル
bez_cla_sty.css
MoveImage に戻る
@charset "utf-8";
#wrapper{
margin:0 auto;
width:600px;
height:750px;
}
#object1{
position:absolute;
-webkit-animation-name:test1;
animation-name:test1;
-webkit-animation-duration:10s;
animation-duration:10s;
-webkit-animation-timing-function:
linear;
animation-timing-function:linear;
-webkit-animation-iteration-count:
infinite;
animation-iteration-count:
infinite;
-webkit-animation-fill-mode:both;
animation-fill-mode:both;
}
#object2{
position:absolute;
-webkit-animation-name:test2;
animation-name:test2;
-webkit-animation-duration:10s;
animation-duration:10s;
-webkit-animation-timing-function:
linear;
animation-timing-function:linear;
-webkit-animation-iteration-count:
infinite;
animation-iteration-count:
infinite;
-webkit-animation-fill-mode:both;
animation-fill-mode:both;
}