小程序固定底部、居中的悬浮按钮

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/henryhu712/article/details/82935354

.wxml:

<view class="add-wrap"hover-class="plus-hover">
  <image src="/assets/plus_new.png"></image>
</view>

.wxss:

add-wrap {
  position:fixed;
  bottom:0;
  display:flex;
  width:100%;
  justify-content:center;
}
.add-wrap image {
  width:64px;
  height:64px;
}

效果:

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/henryhu712/article/details/82935354