当你用鼠标滚轮在Windows 8中滚动时,固定的背景图像弹跳像疯了。这只会影响IE 10和IE 11.这会影响位置:fixed的元素。有没有阻止它发生在IE 10和11?
这里是一个固定的背景图像的例子:
解决方法
我知道这是一个晚了一个答案,但我有同样的问题,并能够通过添加这些属性到我的css文件来解决它。
html{ overflow: hidden; height: 100%; } body{ overflow: auto; height: 100%; }
从评论:
This solution stops scroll events from firing on the window,so do be careful if you’re using anything that relies on such events firing. 07000 ( overflow: hidden,scroll events don’t work) 07001 ( overflow: auto,scroll events fire) – Dan Abrey