1,js判断向上滚还是向下滚。下面说向下滚:
2,获得当前窗口高度 h=document.body.clentWidth
3,当前窗口左上角距离页面顶部高度 document.body. scrollTop+=h
#section5,#section5 .fp-slide,
#section5 .fp-tableCell,
footer,
footer .fp-slide,
footer .fp-tableCell
{
height: auto !important
}
这个是页面高度根据内容高度变化的,
autoScrolling:false, 这个是关闭自动滚一整屏的。
需要准备的材料分别有:电脑、html编辑器、浏览器。
1、首先,打开html编辑器,新建html文件,例如:index.html,并引入jquery。
2、在index.html中的<script>标签,输入jquery代码:
$('body').append('height: ' + $(document).height() + '<br/>')
$('body').append('width: ' + $(document).width())
3、浏览器运行index.html页面,此时会打印出界面最大可以滚动的文档宽度和文档高度。