当某个DIV进入页面视图时,是否可以触发特定的javascript事件?
比如说,我有一个非常大的页面,比如2500x2500,我有一个位于1980x1250位置的40x40 div。 div不一定是手动定位的,它可能存在,因为内容将其推到那里。现在,当用户滚动到div可见的点时,是否可以运行一个函数?
答案 0 :(得分:10)
不自动。您必须通过比较div矩形与可见页面矩形的坐标来捕获滚动事件并检查它是否在视图中。
这是一个最小的例子。
<div id="importantdiv">hello</div>
<script type="text/javascript">
function VisibilityMonitor(element, showfn, hidefn) {
var isshown= false;
function check() {
if (rectsIntersect(getPageRect(), getElementRect(element)) !== isshown) {
isshown= !isshown;
isshown? showfn() : hidefn();
}
};
window.onscroll=window.onresize= check;
check();
}
function getPageRect() {
var isquirks= document.compatMode!=='BackCompat';
var page= isquirks? document.documentElement : document.body;
var x= page.scrollLeft;
var y= page.scrollTop;
var w= 'innerWidth' in window? window.innerWidth : page.clientWidth;
var h= 'innerHeight' in window? window.innerHeight : page.clientHeight;
return [x, y, x+w, y+h];
}
function getElementRect(element) {
var x= 0, y= 0;
var w= element.offsetWidth, h= element.offsetHeight;
while (element.offsetParent!==null) {
x+= element.offsetLeft;
y+= element.offsetTop;
element= element.offsetParent;
}
return [x, y, x+w, y+h];
}
function rectsIntersect(a, b) {
return a[0]<b[2] && a[2]>b[0] && a[1]<b[3] && a[3]>b[1];
}
VisibilityMonitor(
document.getElementById('importantdiv'),
function() {
alert('div in view!');
},
function() {
alert('div gone away!');
}
);
</script>
您可以通过以下方式改进:
onscroll
overflow
或scroll
的祖先抓住auto
,并调整其左上角的滚动位置overflow
scroll
,auto
和hidden
裁剪将div放在屏幕外addEventListener
/ attachEvent
使用调整大小/滚动事件来允许多个VisibilityMonitors和其他内容getElementRect
以使某些情况更准确,并且某些事件解除绑定以避免IE6-7内存泄漏(如果您确实需要)。答案 1 :(得分:0)
这是使用jQuery的首发示例:
<html>
<head><title>In View</title></head>
<body>
<div style="text-align:center; font-size:larger" id="top"></div>
<fieldset style="text-align:center; font-size:larger" id="middle">
<legend id="msg"></legend>
<div> </div>
<div id="findme">Here I am!!!</div>
</fieldset>
<div style="text-align:center; font-size:larger" id="bottom"></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
var $findme = $('#findme'),
$msg = $('#msg');
function Scrolled() {
var findmeOffset = $findme.offset(),
findmeTop = findmeOffset.top,
scrollTop = $(document).scrollTop(),
visibleBottom = window.innerHeight;
if (findmeTop < scrollTop + visibleBottom) {
$msg.text('findme is visible');
}
else {
$msg.text('findme is NOT visible');
}
}
function Setup() {
var $top = $('#top'),
$bottom = $('#bottom');
$top.height(500);
$bottom.height(500);
$(window).scroll(function() {
Scrolled();
});
}
$(document).ready(function() {
Setup();
});
</script>
</body>
</html>
一旦div从底部进入视图,它才会通知。当div从顶部滚出时,此示例不会通知。