2014-03-30 64 views
0

如何在Opera瀏覽器中關閉所有css3動畫?在Opera瀏覽器中關閉css3動畫

我不想完全拾取它們,只是想在歌劇中關閉它。

+1

也許你可以從代碼隱藏(以編程方式)給css類並從那裏檢查瀏覽器?應該有一些命令。 –

回答

0

您將着眼於只定位Opera瀏覽器,這是用一個前綴進行:

-o-transition: none; 

所以針對一個特定的元素將具備以下條件:

a { 
-webkit-transition: all 0.5s ease-in-out; 
-moz-transition: all 0.5s ease-in-out; 
-ms-transition: all 0.5s ease-in-out; 
-o-transition: none; 
transition: all 0.5s ease-in-out; 
} 

但你的過渡可能會有所不同,不看你的HTML和CSS的小提琴。

+0

它不起作用。它現在再次成爲動畫 – user3271403

0

至少,我使用此代碼:

noindex:-o-prefocus, * { 
    animation : none !important; 
     -o-animation : none !important; 
} 

和問題是固定的。