Answers for "jquery trigger on scroll to element"

13

scroll to element jquery

$('html, body').animate({
  scrollTop: $("#grepperRocks").offset().top
});
Posted by: Guest on March-18-2020
6

jquery scroll to element

$("#button").click(function() {
    $([document.documentElement, document.body]).animate({
        scrollTop: $("#elementtoScrollToID").offset().top
    }, 2000);
});
Posted by: Guest on July-29-2020
1

jquery on scroll down

Check current scrollTop vs previous scrollTop

var lastScrollTop = 0;
$(window).scroll(function(event){
   var st = $(this).scrollTop();
   if (st > lastScrollTop){
       // downscroll code
   } else {
      // upscroll code
   }
   lastScrollTop = st;
});
Posted by: Guest on December-05-2020
0

jquery trigger event when scroll to div

$(window).scroll(function() {
   var hT = $('#scroll-to').offset().top,
       hH = $('#scroll-to').outerHeight(),
       wH = $(window).height(),
       wS = $(this).scrollTop();
   if (wS > (hT+hH-wH)){
       console.log('H1 on the view!');
   }
});
Posted by: Guest on November-25-2020

Code answers related to "jquery trigger on scroll to element"

Code answers related to "Javascript"

Browse Popular Code Answers by Language