$(function(){ $('.about-top-m .tits').click(function(){ if($(this).hasClass('on')){ $(this).removeClass('on'); $('.about-top-m ul').slideUp(); }else{ $(this).addClass('on'); $('.about-top-m ul').slideDown(); } }) $('.js-m,.js-m1,.js-m2,.js-m3').each(function() { var _this = $(this); if ($(window).scrollTop() > _this.offset().top - $(window).height()) { _this.stop().transition({ translate: (0, 0), rotate: 0, scale: 1, opacity: 1 }, 1000); } }); $(window).scroll(function(){ $('.js-m,.js-m1,.js-m2,.js-m3').each(function() { var _this = $(this); if ($(window).scrollTop() > _this.offset().top - $(window).height()) { _this.stop().transition({ translate: (0, 0), rotate: 0, scale: 1, opacity: 1 }, 1000); } }); }); });