$(window).scroll(function() {
if ($(window).scrollTop() >= $(".cent-line-box").offset().top - $(window).height()/2 + 5 && !$(".history-wrap .cent-wrap li").last().hasClass('show')) {
$(".cent-line-box").addClass('active');
$(".cent-line-box .point-h").show();
}else{
$(".cent-line-box").removeClass('active');
$(".cent-line-box .point-h").hide();
}
$(".history-wrap .cent-wrap li").each(function() {
var _this = $(this);
if ($(window).scrollTop() >= $(this).offset().top - $(window).height() + 260) {
_this.addClass('show');
}else{
_this.removeClass('show');
}
});
});
相关分类