Is there an IE fallback for transform rotateY(180deg)? Need a 3D flip animation!
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t have IE8 to test with but I think this might work: (ie5.5+)
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
http://msdn.microsoft.com/en-us/library/ms532972%28VS.85%29.aspx
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
Personally when using IE6-8 the tag that works best for me is display: none ;P