提问者:小点点

CSS3过渡转换在Safari中不工作,但在Chrome中工作


下面的拨弄说明了这个问题:

http://jsfiddle.net/ydLyzk8c/

在新版火狐、Chrome 中,

然而,在Mac上的Safari 8中

    -webkit-transform:-webkit-scale(1,1);
    -moz-transform:-moz-scale(1,1);
    -ms-transform:-ms-scale(1,1);
    -o-transform:-o-scale(1,1);
transform:scale(1,1);

但还是一无所获我错过了什么?


共1个答案

匿名用户

供应商前缀必须在属性中,而不是在值中,因此:

-o-transform: scale(1,1);