更改浏览器滚动条的可滚动高度
我正在尝试设置我的网站的最大滚动长度。
我将每个主页预加载到不可见的 div 中,但在每个页面上,滚动条垂直高度与我从外部 html 预加载的最长页面一样长。
有没有办法用javascript设置最大可滚动距离?
我现在每页上都有这些空白区域......
I'm trying to set the max scroll length for my site.
I'm preloading each main page into invisible div's, but on every page the scrollbar vertical height is as long as the longest page I preloaded form external html.
Is there any way to set the maximum scrollable distance with javascript?
I have these empty spaces now on each page...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的
hiddenPageClass
更改为使用display:none;
而不是visibility: hide;
另外,以供将来参考。在此处发布相关代码和/或在 jsFiddle.net 处发布示例。不要让我们访问您的个人网站。
编辑
您可以在此中看到两个属性的差异About.com 问题。
Change your
hiddenPageClass
to usedisplay:none;
instead ofvisibility: hidden;
Also, for future reference. Post relevant code here and/or an example at jsFiddle.net. Don't make us go to your personal site.
EDIT
You can see the difference in the two properties in this About.com question.