最近在做css動畫,遇到需要用腳本重新播放動畫的情況。例如:
css動畫程式碼
seed_txt_out .seed_txt h2 {
animation-name: seed-h2;
animation-duration: 2s;
animation-timing-function: ease;
animation-delay: 0s ; iteration-count: 1;
animation-direction: alternate;
animation-play-state: running;
position: relative;
top: 10px;
}
@keyframes eed -h2
{
from {top: -120px;}
to {top: 10px;}
}
複製程式碼
程式碼如下:
$(".seed_txt_out").children("div").removeClass("seed_txt ");
$(".seed_txt_out").children("div").addClass("seed_txt");
複製程式碼
程式碼如下:
$(opts.txt).children(div" ).removeClass("seed_txt");
temp = $(opts.txt).children("div:eq(" $(this).parent("ul").children("li").index( this) ")");
newDiv = temp.clone(true);
temp.after(newDiv);
temp.remove();
newDiv.addClass("seed_txt"); 這裡有個鏈接,老外解決的辦法。還說了其它情況。遇到類似問題的朋友可以參考下,當然,是英文的。 http://css-tricks.com/restart-css-animation/