基于jQuery实现滚动刷新效果
Jquery实现简单的滚动刷新效果:
实际情况使用Ajax获取后台数据更新前端页面即可实现页面滚动刷新效果
HTML正文:
<form id="form1" runat="server"> <div style="height: 3000px; background-color: yellow;"> </div> </form>
Javascript操作代码:
$(document).ready(function() { $(window).scroll(function() { //$(document).scrollTop() 获取垂直滚动的距离:最小值为0,最大值:文档高度-可视化窗口高度 //$(document).scrollLeft() 这是获取水平滚动条的距离 console.log("垂直滚动条位置:"+$(document).scrollTop()+"--"+$(window).height()); if ($(document).scrollTop() <= 0) { console.log("滚动条已经到达顶部为0"); } /** *$(document).height():文档的高度 *$(window).height():可视域的高度:窗口的大小:根据浏览窗口的大小变化 *判断底部:文档高度<=滚动条垂直高度+可视窗口的高度 * */ if ($(document).scrollTop() >= $(document).height() - $(window).height()) { console.log("滚动条已经到达底部为" + $(document).scrollTop()); } }); });
效果:
相关推荐
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
tztzyzyz 2020-07-20
83510998 2020-07-18
81463166 2020-07-17