2012-09-15 132 views

回答

2

我不知道IE,但-webkit-animate不是一個有效的屬性。您需要使用-webkit-animation

演示:http://jsfiddle.net/pmfzh/2/

+0

愚蠢的我......似乎現在在這兩種瀏覽器工作!謝謝。 – cmplieger

1

Hereb是正確的CSS。更改animateanimation

div.run:hover{ 
    animation: bounce 2s; 
    -webkit-animation: bounce 2s; 
}