0
這段代碼有什麼問題?縮放轉換效果在Internet Explorer 10或11中無效(在其他瀏覽器中爲「確定」)。背景大小的過渡在IE10/11中不起作用
<div class="image"></div>
.image {
width:300px;
height:200px;
background: url("http://lorempixel.com/300/200");
background-position:center;
background-size:100%;
transition: background-size 1s ease;
-moz-transition: background-size 1s ease;
-o-transition: background-size 1s ease;
-webkit-transition: background-size 1s ease;
}
.image:hover {
background-size:150%;
}
背景大小的轉換應該用IE10/11的工作,因爲我看到here
哪裏是我的錯?
I made a Codepen here