Js58 시간차 parallax 패럴렉스 표현 let bg = document.getElementById('bg');let text = document.getElementById('text');let image = document.getElementById('image');window.addEventListener('scroll', function(){ var value = window.scrollY; bg.style.top = value * 0.25 + 'px'; text.style.top = value * 0.15 + 'px';}) 2024. 4. 28. goto top $(window).scroll(function(){ if($(this).scrollTop() >= 300){ $('.goTop').fadeIn(); }else{ $('.goTop').fadeOut(); }});$('.goTop').click(function(e){ e.preventDefault(); $('html, body').stop().animate({scrollTop:0}, 500);}); 2024. 4. 27. 이전 1 2 3 다음