p
с классом .ef
должны поочередно появляться, но(function($){
$(".content").mCustomScrollbar({
axis:"y",
callbacks:{
whileScrolling: function(){
var x = this.mcs.content.find('.ef');
var d = -this.mcs.top;
x.each(function(i){
console.log(d);
var g = $(this).position().top;
var gh = $(this).height();
console.log(Math.round(gh));
if(d > Math.round(g) - 400) {
$(this).addClass('go');
}
});
}
}
});
})(jQuery);