首页 > 代码库 > jQuery滚动延迟加载执行代码

jQuery滚动延迟加载执行代码

滚动条延迟加载

jQuery(function($){    var topicBoxTopHeight = jQuery(‘#topicBox‘).offset().top;    var topicBoxTopHeight_show = 1    $(window).scroll(function(event){                if($(this).scrollTop() > topicBoxTopHeight-$(window).height()-200 && topicBoxTopHeight_show==1){            topicBoxTopHeight_show=0;            topicBoxFn();        }    });})