简体   繁体   中英

CSS animations in Opera and IE

Recently I have launched CSSload.net - CSS spinners and bars generator . The animations work perfectly in Firefox and Webkit browsers. Does anyone know if there is anyway to animate elements like this in Opera and IE?

IE10将支持不带前缀的CSS3动画,因此,即使向后兼容,任何代码也不需要IE的供应商前缀,因为IE9从未支持它。

for progressive enhancement, add the real style property, example, you have -moz-transition,-webkit-transition...add transition too. for opera, add their prefix, -o- to everything that is -moz and -webkit. for ie, you can use css sandpaper, but its relying on a javascript fix http://www.useragentman.com/blog/2010/04/05/cross-browser-animated-css-transforms-even-in-ie/ if you want pure css, you could always add filters for IE http://msdn.microsoft.com/en-us/library/ms532847(v=vs.85).aspx here's a great example of adding filters for IE http://robertnyman.com/css3/css-transitions/css-transitions-mac-os-x-stacks.html

i'm not sure if there is an -ms-transition. i want to say there is, but not finding anything atm

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM