window.scroll({ behavior: 'smooth' }) 在移動端不生效的問題解決

首先,遇到問題,一般百度解決不了。如果你是百度搜到我的那你真是幸運,反正我百度沒搜到解決方法,最後還得靠goole。

先直接上解決方案:

// 安裝這個插件
yarn add smoothscroll-polyfill 或者 npm i smoothscroll-polyfill

在你需要解決問題的頁面引入:
import smoothscroll from 'smoothscroll-polyfill';
執行這個方法:
smoothscroll.polyfill();

好了問題解決。

其他方法:請參考

https://stackoverflow.com/questions/51229742/javascript-window-scroll-behavior-smooth-not-working-in-safari

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章