Why CSS animations are working all smooth in Chrome but not in Firefox?

前端 未结 1 1441
终归单人心
终归单人心 2021-01-26 23:40

Why CSS animations are working all smooth in Chrome but not in Firefox?

url: http://carloshermoso.com/works/rwd/

#mainContent h2 { -moz-animation-duratio         


        
相关标签:
1条回答
  • 2021-01-27 00:29

    Probably simply due to the different rendering engines of chrome and firefox. You can take a look at this if you want to see how you can improve the css transform speed. Additionally, your code isn't working in Opera or Internet Explorer because you haven't included the normal (no-prefix) animation property that Opera and IE 10 use. Note that IE 9 and Below don't support CSS animations at all. More information on that here.

    0 讨论(0)
提交回复
热议问题