JQuery scroll to top of Bootstrap Modal

前端 未结 7 1321
小蘑菇
小蘑菇 2020-12-23 19:37

I\'m currently using the bootstrap modal plugin to display long legal messages on a website I\'m designing, but the problem is that if you open one modal after the other, th

7条回答
  •  醉酒成梦
    2020-12-23 19:46

    1. Scroll up button has a class of: .page-scroll

    enter image description here

    1. Modal with a class of: .modal

    2. JS to make scroll happen with the modal (JS could be simplified):

      $('body').on('click', '.page-scroll', function(event) {
          var $anchor = $(this);
          $('html, body, .modal').stop().animate({
              scrollTop: $($anchor.attr('href')).offset().top
          }, 1500, 'easeInOutExpo');
          event.preventDefault();
      });
      

提交回复
热议问题