我只是通过tfe对解决方案进行了一些调整。特别是,我添加了一些其他控件,以确保在滚动条设置为时,页面内容不会发生移位(aka 页面移位)hidden
。
两个Javascript函数lockScroll()
和unlockScroll()
可以被定义,分别锁定和解锁页面滚动。
function lockScroll(){
$html = $('html');
$body = $('body');
var initWidth = $body.outerWidth();
var initHeight = $body.outerHeight();
var scrollPosition = [
self.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft,
self.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop
];
$html.data('scroll-position', scrollPosition);
$html.data('previous-overflow', $html.css('overflow'));
$html.css('overflow', 'hidden');
window.scrollTo(scrollPosition[0], scrollPosition[1]);
var marginR = $body.outerWidth()-initWidth;
var marginB = $body.outerHeight()-initHeight;
$body.css({'margin-right': marginR,'margin-bottom': marginB});
}
function unlockScroll(){
$html = $('html');
$body = $('body');
$html.css('overflow', $html.data('previous-overflow'));
var scrollPosition = $html.data('scroll-position');
window.scrollTo(scrollPosition[0], scrollPosition[1]);
$body.css({'margin-right': 0, 'margin-bottom': 0});
}
我以为<body>
没有初始保证金。
请注意,尽管上述解决方案在大多数实际情况下都可以使用,但由于它需要对页面进行一些进一步的自定义(例如,带有的标头),因此尚不确定position:fixed
。让我们通过一个例子来研究这种特殊情况。假设有
<body>
<div id="header">My fixedheader</div>
<!--- OTHER CONTENT -->
</body>
与
#header{position:fixed; padding:0; margin:0; width:100%}
然后,应该在函数lockScroll()
和中添加以下内容unlockScroll()
:
function lockScroll(){
//Omissis
$('#header').css('margin-right', marginR);
}
function unlockScroll(){
//Omissis
$('#header').css('margin-right', 0);
}
最后,注意边距或填充的一些可能的初始值。