回到顶部功能—基于JS撰写,直接可以复制它不香吗?

// 创建元素
const files = document.createElement('div')
files.innerHTML = '<i class="el-icon-top"></i>'

// 设置样式
const filesStyle = {
  position: 'fixed',
  zIndex: 99,
  backgroundColor: '#FF7D57',
  borderRadius: '50%',
  bottom: '100px',
  right: '50px',
  display: 'none',
  color: 'white',
  width: '50px',
  height: '50px',
  alignItems: 'center',
  justifyContent: 'center',
  fontSize: '25px',
  cursor: 'pointer'
}

// 添加样式
for (const key in filesStyle) {
    files.style[key] = filesStyle[key]
}

// 添加节点
document.body.append(files)

// 添加点击事件
files.onclick = function smoothscroll () {
    window.scrollY > 0 && window.requestAnimationFrame(smoothscroll)
    window.scrollTo(0, window.scrollY - (window.scrollY / 5))
}

// 设置滚动事件 
window.onscroll = () => {
    files.style.display = window.scrollY > 300 ? 'flex' : 'none'
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值