我尝试停止默认转换并转换为适用于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;
}
答案 0 :(得分:1)
Internet Explorer 9及更早版本不支持转换属性。
Internet Explorer 9支持另一种选择, -ms-transform属性(仅限2D转换)。
btw IE10支持两种..
由于 AB