0

我尝试停止在 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;
}
4

1 回答 1

1

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

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

顺便说一句 IE10 支持这两者..

谢谢 AB

于 2013-07-09T10:37:10.310 回答