你们知道为什么下面的CSS3转换在Opera中不起作用吗,即使使用了-o-transition?Firefox和IE 10正确呈现菜单项:
http://jsfiddle.net/JYLZ3/
发布于 2012-04-28 00:12:37
您可以尝试使用以下语法:
-o-transition-property: background-color;
-o-transition-duration: 4s;我刚刚修改了小提琴,这确实可以在Opera11.62中使用。事实上,看起来你可以只使用速记形式,但包括-color使其与Opera一起工作:
-o-transition: background-color 5s;来源:http://dev.opera.com/articles/view/css3-transitions-and-2d-transforms/
发布于 2012-05-17 04:31:09
在Opera 12 alpha中已修复此问题。-o-transition: background 5s将起作用。
https://stackoverflow.com/questions/10354028
复制相似问题