var example = new Fx(element,//element
{
form:{
//アニメーション前のスタイル
//color: "#00f",
},
to:{
//ターゲットのスタイル
color: "#00f",
"background-color":"#5f5",
opacity:0.9,
},
//リニアメソッド
transition:Transition.elasticInOut,
//アニメーション時間
duration:5000,
//アニメーションフレーム値
fps:50,
onAnim:function(s){
//アニメーション中
},
onStart:function(){
//アニメーション開始時
},
onPause:function(){
//アニメーション一時停止時
},
onResume: function( ){
//アニメーションが再開するとき
},
onStop:function(){
//アニメーションが停止するとき
}
}
); // アニメーションを開始
example.start();
//アニメーションを停止
example.stop();
//アニメーションを停止して元のスタイルに戻す
example.stop(1) ;
//アニメーションを一時停止します
example.pause();
//アニメーションを再開します
完全なデモ コード:
Fx アニメーション クラスは CSS3 をサポートします/title>
./../ scripts/Fx.js" type="text/javascript">
著者別の最新記事
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31