官网有用例: http://iamdustan.com/smoothscroll/
# npm
npm install smoothscroll-polyfill --save
# yarn
yarn add smoothscroll-polyfill
import smoothscroll from 'smoothscroll-polyfill';
smoothscroll.polyfill();
// 处理平滑移动
const handleMove = (direction, distance) => {
refDateBox.current.scrollBy({
top: 0,
[direction]: distance,
behavior: 'smooth',
});
};