2013-07-09 55 views
0

我嘗試停止默認過渡和變形在flex-slider中工作在Firefox和鉻但不在IE中。css3過渡和變換沒有不工作在即

#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

哪個IE版本? – muneebShabbir

+0

@muneebShabbir IE9 – VishnuPrasad

+0

IE <= 9 [不支持'transition'](http://caniuse.com/#feat=css-transitions)。我想你正在使用一些庫,它使用JS來模擬IE9上的過渡,所以CSS無法阻止它。 – Passerby

回答

1

的Internet Explorer 9,和更早的版本,不支持過渡財產。

Internet Explorer 9支持替代方案,即-ms-transform屬性(僅限2D轉換)。

BTW IE10支持..

感謝 AB

+0

但默認轉換工作在IE瀏覽器 – VishnuPrasad

+0

您使用的IE瀏覽器是? –