
回到顶部动画算法
/ 总字数100,阅读预计耗时1分钟
View more blogs with the category 算法 > View more blogs with the category 动画
目录
摘自element-ui源码
const backTop = () => { const cubic = value => Math.pow(value, 3) const easeInOutCubic = value => value < 0.5 ? cubic(value * 2) / 2 : 1 - cubic((1 - value) * 2) / 2 const el = document.body const beginTime = Date.now() const beginValue = el.scrollTop const rAF = window.requestAnimationFrame || (func => setTimeout(func, 16)) const frameFunc = () => { const progress = (Date.now() - beginTime) / 500 if (progress < 1) { el.scrollTop = beginValue * (1 - easeInOutCubic(progress)) rAF(frameFunc) } else { el.scrollTop = 0 } }; rAF(frameFunc)}