how can i make this jQuery scroll smoothly to the div i am targeting

Viewed 17
$(function() {
  $('#exampleModal').modal({
    show: true,
    keyboard: false,
    backdrop: 'static',
  });
  
  $('.workbook_link').click(function() {
    $('html, body').animate({
      scrollTop: $("#cardworkbook").position().top - 100
    }, 1000);
  });
  
  $('.workbook_link').click(function() {
    $('html, body').animate({
      scrollTop: $("#mainworkbook").offset().top
    }, 500);
  });

  $('.about_tool').click(function() {
    $('html, body').animate({
      scrollTop: $('.about_section_area').offset().top
    }, 500)
  });
});
1 Answers

I just changed the animation time from 1000ms to 10ms it worked for me, with 1000ms it was a little jerky at start, after using 10ms it scrolled at uniform speed.

Related