如何在Opera浏览器中关闭所有css3动画?
我不想完全拿起它们,只是想在歌剧中把它关掉。
答案 0 :(得分: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的小提琴,你的过渡可能会有所不同。
答案 1 :(得分:0)
至少,我使用了这段代码:
noindex:-o-prefocus, * {
animation : none !important;
-o-animation : none !important;
}
问题是固定的。