wxml:
<view class="btn" bindtap="gotop"><text class="btn-gotop" style="">顶部</text></view>
js:
gotop:function(e){if (wx.pageScrollTo) {wx.pageScrollTo({scrollTop: 0})} else {wx.showModal({title: '提示',content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。'})}}
wxss:
.btn{
background-color: #808080;
border: black;
margin-left:80%;
width:48px;
height: 48px;
position:fixed;
bottom:20px;
border-radius: 50%
}
.btn-gotop
{
color:white;
position:absolute;
margin-top: 0.8rem;
margin-left: 0.4rem
}
样式文件注意一点:使用px、%单位调整文字位置的时候都没有生效,使用rem就生效了。
最终效果:
转载:https://blog.csdn.net/qq_45128278/article/details/106138917