Why does Chrome still use prefix for animations?

流过昼夜 提交于 2019-12-23 00:48:57

问题


I'm really not sure if this question should be here, if not, please forgive me, but I'm intrigued in the reason why Chrome/Safari still prefix CSS3 animations, given that any other major browser supports them as standart, some even since a long time. (IE +9, Firefox +15, Opera +12.0 according to this)

@keyframes anim{}
@-webkit-keyframes anim{}

div{
    animation:anim;
    -webkit-animation:anim;
}

Is it still considered an experimental technology?

Thanks!

来源:https://stackoverflow.com/questions/28396890/why-does-chrome-still-use-prefix-for-animations

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!