小程序
小游戏
企业微信
微信支付
页面加了buton实现分享功能,但是出现一个问题,点击页面大部分区域竟然都调起了分享
为什么使用小程序的分享功能,所以使用了button按钮
然后发现有边框,解决这个问题的过程中,不小心修改了button的postion属性,然后就出现了一个问题:
点击页面大部分区域都会调起分享功能,非常的坑
PS:去掉边框,加button::after{ border: none; }这个就可以了
3 个评论
加粗
标红
插入代码
插入链接
插入图片
上传视频
感谢 同款问题 找了好久 难受
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
app.wxss里加下
button {
background-color: transparent;
padding: 0;
margin: 0;
position: static;
border: 0;
border-radius: 0;
}
button::after {
content:
''
;
-webkit-transform:scale(1);
transform:scale(1);
display: none;
background: transparent;
通过调试工具看下button实际区域,如果此问题排除的话,看看是不是有冒泡的可能
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
感谢 同款问题 找了好久 难受
app.wxss里加下
button {
background-color: transparent;
padding: 0;
margin: 0;
position: static;
border: 0;
border-radius: 0;
}
button::after {
content:
''
;
-webkit-transform:scale(1);
transform:scale(1);
display: none;
background: transparent;
}
通过调试工具看下button实际区域,如果此问题排除的话,看看是不是有冒泡的可能