css3 transition and transform none 在 ie 中不起作用

标签 css

我尝试在 flex-slider 中停止默认的转换和转换,它在 Firefox 和 chrome 中有效,但在 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;
}

最佳答案

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

Internet Explorer 9 支持替代方法,即 -ms-transform 属性(仅限 2D 转换)。

顺便说一句,IE10 都支持..

谢谢 AB

关于css3 transition and transform none 在 ie 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17545949/

相关文章:

html - 将 float 元素组织成动态网格

css - 糟糕的垂直对齐方式,字体很棒

javascript - css:悬停时出现背景色 block /javascript:淡出背景色 block

javascript - 如何使用 Javascript 检测触摸悬停?

css - 如何删除引导列表组中的列表项边框?

html - 如何让 HTML 元素排成一行?

javascript - 单击按钮时重定向到不同的链接

jquery - .hover 在 .click 插入时不再起作用

css - 对部分页面使用 YUI 网格 CSS 样式

php - 带有类别的图像和文字不会显示(PHP CSS HTML)