微信小程序浮动按钮
2020-09-17 本文已影响0人
_Gaara_
效果图
wxml
<!--圆形点击框 -->
<view class="round-click">
<navigator url='/pages/xxx/xxx' >点我添加</navigator >
</view>
wxss
.round-click{
height: 120rpx;
width: 120rpx;
background-color: #d92a2a;
border-radius: 100%;
position: fixed;
bottom: 150rpx;
right: 20rpx;
display: flex;
align-items: center;
justify-content: center;
z-index: 9;
}
.round-click navigator{
font-size: 32rpx;
max-width: 80rpx;
color: #fff;
text-align: center;
}