Smooth scroll anchor links WITHOUT jQuery

前端 未结 14 1925
暗喜
暗喜 2020-11-30 20:06

Is it possible to use smooth scroll to anchor links but without jQuery? I am creating a new site and I don\'t want to use jQuery.<

14条回答
  •  粉色の甜心
    2020-11-30 20:57

    Based on MDN docs for scroll options we can use the following code:

    element.scrollTo({
      top: 100,
      left: 100,
      behavior: 'smooth'
    });
    

    In fact, the behavior key can accept smooth and auto variables. first for smooth motion and second for a single jump. ‍‍

提交回复
热议问题