window.scrollTo with options not working on Microsoft Edge

前端 未结 7 1823
不知归路
不知归路 2020-12-03 21:07

I have a strange issue which I can only replicate on Microsoft browsers (Edge and IE11 tested).

7条回答
  •  南笙
    南笙 (楼主)
    2020-12-03 21:48

    As mentioned before, the Scroll Behavior specification has only been implemented in Chrome, Firefox and Opera.

    Here's a one-liner to detect support for the behavior property in ScrollOptions:

    const supportsNativeSmoothScroll = 'scrollBehavior' in document.documentElement.style;
    

    And here's a simple implementation for cross-browser smooth scrolling: https://nicegist.github.io/d210786daa23fd57db59634dd231f341

提交回复
热议问题