//스크롤 페이드인 $(document).ready(function() { triggerJqueryFadeIn() $(window).scroll(triggerJqueryFadeIn); }); var animateQueue = new Array(); var ready = true; function triggerJqueryFadeIn() { $('.ani-wowweb').each( function(){ var object_top = $(this).offset().top + 50; var window_bottom = $(window).scrollTop() + $(window).height(); if( window_bottom > object_top ){ $(this).addClass('action'); } }); triggerJqueryFadeInQueue(); } function triggerJqueryFadeInQueue() { if(animateQueue.length != 0 && ready) { ready = false; $this = animateQueue.shift(); $($this).addClass('action'); } }