text IE固定背景紧张
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text IE固定背景紧张相关的知识,希望对你有一定的参考价值。
if(navigator.userAgent.match(/Trident\/7\./)) { // if IE
$('body').on("mousewheel", function (event) {
// remove default behavior
event.preventDefault();
//scroll without smoothing
var wheelDelta = event.wheelDelta;
var currentScrollPosition = window.pageYOffset;
window.scrollTo(0, currentScrollPosition - wheelDelta);
});
}
以上是关于text IE固定背景紧张的主要内容,如果未能解决你的问题,请参考以下文章
IE 10 和 11 使固定背景在使用鼠标滚轮滚动时跳转
为啥在 IE 上滚动时固定的背景图像会移动?
IE6 下 输入类型表单控件背景问题
text 在固定修复器下添加阴影(适用于白色背景)
与文本剪辑的梯度背景为IE11和徒步旅行队
如何在 Raphael.js / IE 中“固定”模式?