您所在的位置:首页 - 科普 - 正文科普
回到顶部js代码
隆杞
2024-05-08
【科普】
1006人已围观
摘要标题:如何添加回到顶部按钮的代码回到顶部按钮是网站常见的交互功能,方便用户快速返回页面顶部。下面是几种常见的添加回到顶部按钮的代码实现方式:一、使用HTML和CSS创建回到顶部按钮:```html.b
如何添加回到顶部按钮的代码
回到顶部按钮是网站常见的交互功能,方便用户快速返回页面顶部。下面是几种常见的添加回到顶部按钮的代码实现方式:
一、使用HTML和CSS创建回到顶部按钮:
```html
.backtotop {
display: none;

position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
backgroundcolor: 333333;
color: ffffff;
textalign: center;
lineheight: 50px;
fontsize: 24px;
cursor: pointer;
}
.backtotop.show {
display: block; /* 显示按钮 */
}
&8593;
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.querySelector('.backtotop').classList.add('show');
} else {
document.querySelector('.backtotop').classList.remove('show');
}
}
function scrollToTop() {
document.body.scrollTop = 0; // 兼容性写法
document.documentElement.scrollTop = 0; // 兼容性写法
}