3次ベジェ曲線アニメ
3次ベジェ曲線アニメ CSS ファイル
bezier_style.css
MoveImage に戻る
@charset "utf-8";
#wrapper{
margin:0 auto;
width:600px;
}
#object1{
position:absolute;
width:125px;
height:125px;
-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;
}