-ms-animation should I include this for older browsers?

后端 未结 3 1892
春和景丽
春和景丽 2020-12-21 11:49

As the title states I was wondering if this should be used.

According to MS documentation simply using \"animation\" is now the default for IE10 (which is why i had

3条回答
  •  Happy的楠姐
    2020-12-21 12:18

    All you need is:

     -webkit-animation: myanim 5s infinite; /* Chrome, Opera 15+, Safari 5+ */
              animation: myanim 5s infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    

    You can always check http://css3please.com/ for css3 related stuff in future :)

提交回复
热议问题