Smooth scroll anchor links WITHOUT jQuery

前端 未结 14 1924
暗喜
暗喜 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:46

    Use this:

    let element = document.getElementById("box");
    
    element.scrollIntoView();
    element.scrollIntoView(false);
    element.scrollIntoView({block: "end"});
    element.scrollIntoView({behavior: "instant", block: "end", inline: "nearest"});
    

    DEMO: https://jsfiddle.net/anderpo/x8ucc5ak/1/

提交回复
热议问题