Why does Chrome still use prefix for animations?

2019-05-30 12: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!

0条回答
登录 后发表回答