我有多个具有同一个类的 div,并且我有一些 jQuery,但我只想将 jQuery 应用到具有该类的 div 之一animated
这是我的 jQuery
$(window).scroll(function () {
var y = $(window).scrollTop(),
x = $('.animated').offset().top - 100;
if (y > x) {
$('.animated').addClass('fadeInUp').removeClass('fadeOutDown');
}
}