UNPKG

simple-utils-js

Version:

前端,前端开发,前端框架,web前端,前端面试题,技术文档,学习,面试,JavaScript,js,ES6,TypeScript,vue,python,css3,html5,Node,git,github,markdown

12 lines (10 loc) 225 B
/** * @description: 平滑滚动页面 * @param {*} page * @return {*} */ const smoothScroll = (element) => document.querySelector(element).scrollIntoView({ behavior: 'smooth', }); module.exports = smoothScroll;