728x90 반응형 scroll3 Scroll Animation See the Pen Parallax scroll animation by isladjan (@isladjan) on CodePen. 2022. 8. 20. Horizontal Scroll(with GSAP and ScrollMagic) See the Pen Horizontal Scroll with GSAP and ScrollMagic by Naila Ahmad (@nailaahmad) on CodePen. 2022. 8. 11. 스크롤 업/다운 이벤트 (scroll up/down event) 홈페이지에 스크롤 할 때 헤더가 안보였다가 스크롤을 올리면 다시 헤더가 나오는 경우 쓸 수 있는 스크립트이다. 꼭 헤더 스크롤 이벤트뿐만 아니라 다양하게 스크롤 업/다운 시 이용할 수 있는 스크립트이다. jQuery let lastScroll = 0; $(window).on('scroll', function(){ let scrollTop = $(this).scrollTop(); if(scrollTop > lastScroll) { //down $('.header_wrap').removeClass('fixed'); } else { // up $('.header_wrap').addClass('fixed'); } lastScroll = scrollTop; }); JAVASCRIPT let lastScroll =.. 2022. 5. 8. 이전 1 다음 728x90 반응형