小程序把按钮做成图片(运用到了分享功能)

因为小程序中 分享share 必须使用button  所以需要把button做成图片

<button class="sharebtn" plain=‘true‘ open-type="share">
          <image  class="shareimage" src="../../../images/share.png"></image>
 </button>

.sharebtn[plain] {
  border: 0;
  width: 420px;
}

.sharebtn {
  display: inline;
  margin-left: 450rpx;
}

.shareimage {
  width: 50rpx;
  height: 50rpx;
  border: none;
}

小程序把按钮做成图片(运用到了分享功能)

上一篇:微信小程序授权登录---“允许”或“拒绝”等等操作


下一篇:微信小程序:wx:for循环输出的使用方法以及简单例子