当您在 Windows 8 中使用鼠标滚轮滚动时,固定的背景图像会疯狂地反弹。这只会影响 IE 10 和 IE 11。这也会影响元素position:fixed
。这是一个具有固定背景图像的示例:
http://www.catcubed.com/test/bg-img-fixed.html
这是示例代码:
#section{
position: fixed;
top:0;
left:0;
background-color:#eee;
background-position: top left;
background-image: url("images/7.png");
background-size: auto;
background-repeat: no-repeat;
z-index: 10;
}
有没有办法让背景仍然在 IE 10 和 11 中?