小程序
小游戏
企业微信
微信支付
扫描小程序码分享
写好的一个图片样式,不想用按钮button打开,有办法实现吗?
想点击某个view,打开button中的开放能力open-type。
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
除了最后一个可以使用 https://developers.weixin.qq.com/miniprogram/dev/api/open-api/setting/wx.openSetting.html 这个API,其他的没办法通过API直接触发。
建议:
<view class="item"></view> //改写为: <button class="item clearBtn" openType="contact"></button> //button默认样式可以清除 .clearBtn { clear: both; margin: 0; padding: 0; box-sizing: inherit; text-decoration: none; border-radius: 0; -webkit-tap-highlight-color: transparent; overflow: hidden; background: none; cursor: pointer; font-weight: normal; } .clearBtn::after { border: 0; box-shadow: 0; }
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
可以啊
这种情况我一般是用<button plain="true" style="background-image:url({{imageSrc}})"/>,再加点样式,类似这样:
{
width: 48rpx;
height: 48rpx;
background-size: 48rpx 48rpx;
background-position: 0rpx 0rpx;
background-repeat: no-repeat;
}
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
除了最后一个可以使用 https://developers.weixin.qq.com/miniprogram/dev/api/open-api/setting/wx.openSetting.html 这个API,其他的没办法通过API直接触发。
建议:
<view class="item"></view> //改写为: <button class="item clearBtn" openType="contact"></button> //button默认样式可以清除 .clearBtn { clear: both; margin: 0; padding: 0; box-sizing: inherit; text-decoration: none; border-radius: 0; -webkit-tap-highlight-color: transparent; overflow: hidden; background: none; cursor: pointer; font-weight: normal; } .clearBtn::after { border: 0; box-shadow: 0; }
可以啊
这种情况我一般是用<button plain="true" style="background-image:url({{imageSrc}})"/>,再加点样式,类似这样:
{
width: 48rpx;
height: 48rpx;
background-size: 48rpx 48rpx;
background-position: 0rpx 0rpx;
background-repeat: no-repeat;
}