function scrollToTop() {
window.scrollTo(0, 0);
}
function smoothScrollToTop() {
const currentScroll = document.documentElement.scrollTop || document.body.scrollTop;
if (currentScroll > 0) {
window.requestAnimationFrame(smoothScrollToTop);
window.scrollTo(0, currentScroll - (currentScroll / 8));
}
}
function scrollToElementTop(element) {
element.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
function animateScrollToTop(duration) {
const start = document.documentElement.scrollTop || document.body.scrollTop;
const target = 0;
const distance = target - start;
const startTime = performance.now();
function step() {
const currentTime = performance.now();
const elapsed = currentTime - startTime;
const progress = Math.min(elapsed / duration, 1);
const easing = function(t) { return t * (2 - t); }; // 缓动函数,例如使用二次方函数
const position = start + distance * easing(progress);
window.scrollTo(0, position);
if (progress < 1) {
window.requestAnimationFrame(step);
}
}
window.requestAnimationFrame(step);
}
<button id="scrollToTopBtn">回到顶部</button>
document.getElementById('scrollToTopBtn').addEventListener('click', scrollToTop);
function scrollToTop() {
window.scrollTo({ top: 0, behavior: 'smooth' });
}
以上是五种常见的回到页面顶部的实现方法,从最基本的滚动到顶部到增强版带有平滑滚动效果和按钮点击事件的写法。可以根据具体需求选择相应的方法来实现回到页面顶部的功能。