Reputation: 1
I try to stop the default transition and transform in flex-slider that works in Firefox and chrome but not in IE.
#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;
}
Upvotes: 0
Views: 1176
Reputation: 4648
Internet Explorer 9, and earlier versions, does not support the transition property.
Internet Explorer 9 supports an alternative, the -ms-transform property (2D transforms only).
btw IE10 supports both..
Thanks AB
Upvotes: 1