css3转换和转换没有在ie中工作

时间:2013-07-09 10:31:29

标签: css3

我尝试停止默认转换并转换为适用于Firefox和Chrome但不适用于IE的flex-slider。

#carousel-2 .slides {

    margin-top: 14px;
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition:none;
    transition: none !important;
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    -moz-transform: none important; 
    -ms-transform: none important; 
    -o-transform: none important;
    transform: none !important;
}

1 个答案:

答案 0 :(得分:1)

Internet Explorer 9及更早版本不支持转换属性。

Internet Explorer 9支持另一种选择, -ms-transform属性(仅限2D转换)。

btw IE10支持两种..

由于 AB