问题描述
变换rotateY(180deg)有没有IE回退?需要一个3D翻转动画!
Is there an IE fallback for transform rotateY(180deg)? Need a 3D flip animation!
推荐答案
我没有IE8测试,但我认为这可能工作:(ie5。 5+)
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation = 3);
I don't have IE8 to test with but I think this might work: (ie5.5+) filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
Matrix Filter for IE可以是另一个选项:
Matrix Filter for IE could be another option: http://msdn.microsoft.com/en-us/library/ms533014%28VS.85%29.aspx
我在玩这个网站的时候得到了答案:
I got the answer from this site when I was playing with something else: http://snook.ca/archives/html_and_css/css-text-rotation
使用IE6时-8最适合我的标签是display:none; P
Personally when using IE6-8 the tag that works best for me is display: none ;P
这篇关于CSS3 transform rotateY(180deg) - IE后备的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!