$(function(){ $('.js-m').each(function() { var _this = $(this); if (_this.offset().top > $(window).scrolltop() + $(window).height() || _this.offset().top < $(window).scrolltop() - _this.outerheight()) { } else if ($(window).scrolltop() > _this.offset().top - $(window).height() * 0.9) { _this.addclass('animate'); } }); $(window).scroll(function() { $('.js-m').each(function() { var _this = $(this); if (_this.offset().top > $(window).scrolltop() + $(window).height() || _this.offset().top < $(window).scrolltop() - _this.outerheight()) { } else if ($(window).scrolltop() > _this.offset().top - $(window).height() * 0.9) { _this.addclass('animate'); } }); }); });