微信小程序实现浮动按钮_xml

效果图

 

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;
}