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.
当 div 使用 jquery 进入浏览器的显示区域时,我需要执行一些操作。
我给 DIV 做了一些动画,它在网页的底部。但是当用户滚动并到达该位置时,该动画需要开始。
尝试这个:
$(document).scroll(function(){ if($(document).scrollTop() + $(window).height() > $("your div").offset().top){ // start your animation } });