我写了一个动画,它在点击jquery中的按钮后开始。现在我想从头到尾运行这个动画。这在jquery中是可能的还是我必须再次写这个动画但是这次是正面的吗?我的意思是只是一个后退功能,可以重新创建每一步,最后看起来就像点击任何东西一样。
$( "#three" ).click(function() {
$( "#two, #four, #five, #six" ).addClass( "animated out" );
$( "#seven" ).addClass( "show" );
$( "#three" ).addClass( "animated totheleft" );
$( "#mytext" ).addClass( "animated totheright" );
setTimeout(function(){$("#mytext").addClass("hide");},2000);
});
答案 0 :(得分:0)
setTimeout(function(){
$( "#two, #four, #five, #six" ).removeClass( "animated out" );
$( "#seven" ).removeClass( "show" );
... so on
},2000);