admin管理员组文章数量:1401256
How can I get the first DOM element that is visible in a viewport?
PS: the first DOM element in a page will not be the first "visible" element when I scroll to the middle or bottom of the page
How can I get the first DOM element that is visible in a viewport?
PS: the first DOM element in a page will not be the first "visible" element when I scroll to the middle or bottom of the page
Share Improve this question edited Jul 29, 2013 at 10:55 rajeemcariazo asked Jul 29, 2013 at 8:26 rajeemcariazorajeemcariazo 2,5345 gold badges38 silver badges63 bronze badges 1- Related: last: stackoverflow./questions/11598138/… – Ciro Santilli OurBigBook. Commented Apr 22, 2020 at 6:53
2 Answers
Reset to default 4In mind with the scroll, you'll need to query the whole document, get the elements offset positions, and match that agains the scrollTop
value of the window. Then query the :eq(0)
(jQuery) of those.
EDIT: I think this sample will work, haven't tried it out yet tho, since I'm unable to access any fiddle here at work puters.
$(function () {
var scroll = $(window).scrollTop();
var elements = $("*"); // VERY VERY bad performance tho, watch out!
var el;
for (var i=0; i<elements.length; i++) {
el = $(elements[i]);
if (el.offset().top >= scroll && el.is(':visible')){
// "el" is the first visible element here!
// Do something fancy with it
// Quit the loop
break;
}
}
});
$(function () {
var $sections = $(".main > section");
var idxCurSection = -1; // Index of first visible section
var scroll = $(window).scrollTop();
var el;
for (var i = 0; i < $sections.length; i++) {
el = $($sections[i]);
if (el.offset().top >= scroll && el.is(':visible')) {
idxCurSection = i;
break;
}
}
if (idxCurSection === -1)
idxCurSection = $sections.length - 1;
alert("Index of first visible section: " + idxCurSection);
});
本文标签: javascriptHow to get the first DOM element that is visible in a viewportStack Overflow
版权声明:本文标题:javascript - How to get the first DOM element that is visible in a viewport? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744297304a2599404.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论