Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当一个元素“#my_div”出现在屏幕上时,如何在滚动过程中检查 jquery?如果它似乎做了某些动作
这是您可以使用的内容,它将给出真假
$('#my_div').offset().top < ($(window).height() + $(window).scrollTop()) && ($('#my_div').offset().top + $('#my_div').outerHeight()) > $(window).scrollTop()
第一个条件将检查 div 是否完全低于视口,第二个条件将检查它是否不完全高于视口