CSS动画fadeInLeft效果可在Windows IE上运行,但在onClick
第二次触发时不适用于Mac OS X.
JavaScript动画效果仅在OS X第一次单击按钮时有效,Windows IE运行良好
image.className=null; //remove class
image.className="animated fadeInLeft"; //add class
感谢。
答案 0 :(得分:0)
你可以执行image.className ="动画fadeInLeft"异步。如:
image.className=null;////remove class
setTimeout( function(){
image.className="animated fadeInLeft";////add class
},0);