我发现恼人的错误。 我尝试当父母的同时,位置改变(在从固定到绝对的例子)动画子元素的CSS属性。 这个工作没有在WebKit浏览器的问题,但在Firefox(第17.0.1)没有动画过渡。
的jsfiddle例如: http://jsfiddle.net/chodorowicz/bc2YC/5/
有没有什么解决方案,使其在FF工作?
编辑它固定在Firefox 34 https://bugzilla.mozilla.org/show_bug.cgi?id=625289
CSS
#container {
position:fixed; left:100px; top:100px;
}
#container.some_state_position {
position:absolute;
}
.box {
width:100px; height:100px;
background:blue;
}
.some_state .box {
background:red; width:50px; height:50px;
}
img, .box {
-webkit-transition:all 1.5s ease;
-moz-transition:all 1.5s ease;
-ms-transition:all 1.5s ease;
transition:all 1.5s ease;
}
img {width:100%;}
.some_state .other_container img {
width:50%;
}