Bootstrap

微信小程序自定义分享按钮

设置一个button,定位在上面,,,设置透明度为 0;

<view class="share relative" style="width: 50rpx;">
              <view class="w-full h-full absolute top-0 left-0" style="text-align: center">
                <view class="iconfont icon-fenxiang"></view>
                分享
              </view>

              <button class="w-full h-full absolute top-0 left-0"  style="opacity: 0" open-type="share"></button>
            </view>
;