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

因为小程序中 分享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;

}