回到顶部代码 Fri, Jan 27, 2023
记录一段回到顶部的代码,在页脚放入以下代码:
<a id="top" href="javascript:window.scrollTo( 0, 0 );" target="_self" id="top">回到顶部</a>
然后在css中添加:
#top {
position: fixed;
bottom: 80px;
right: 30px;
opacity: 1;
cursor: pointer;
}