📜  jquery smooth scool - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:57.853000             🧑  作者: Mango

代码示例1
('a[href*="#"]').on('click', function (e) {
  e.preventDefault()

  $('html, body').animate(
    {
      scrollTop: $($(this).attr('href')).offset().top,
    },
    500,
    'linear'
  )
})