首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >css3转换和转换--没有一个不在ie中工作

css3转换和转换--没有一个不在ie中工作
EN

Stack Overflow用户
提问于 2013-07-09 10:31:28
回答 1查看 1.2K关注 0票数 0

我试着停止默认的转换,并转换为在Firefox和chrome中工作的flex-滑块,而不是IE。

代码语言:javascript
复制
#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;
}
EN

回答 1

Stack Overflow用户

发布于 2013-07-09 10:37:10

Internet 9和早期版本不支持transition属性。

Internet 9支持另一种方法,-ms-transform属性(仅限于2D转换)。

顺便说一句,IE10同时支持..。

谢谢AB

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/17545949

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档