我也遇到了同样的情况! 在cover-view 放 button 调用客服点击无效 <cover-view class='service box left'> <button class='serviceBtn' open-type='contact'></button> <cover-image class='img bottomBtnImg serviceBtnImg' style='' src='../img/service.png' mode='aspectFit'></cover-image> <cover-view class='display'>客服</cover-view> </cover-view>
cover-view嵌入button,真机(安卓、ios)都不显示?需求:下层组件是canvas,上层是cover-view,并在cover-view嵌入button,然后通过button的open-type=getphonenumber手机号授权。 出现问题:cover-view上button无法显示,安卓、ios,都不显示
2019-11-05同问,我也遇到了同样的情况! <cover-view class='service box left'> <button class='serviceBtn' open-type='contact'></button> <cover-image class='img bottomBtnImg serviceBtnImg' style='' src='../img/service.png' mode='aspectFit'></cover-image> <cover-view class='display'>客服</cover-view> </cover-view>
cover-view内button open-type="contact"无效1、微信客户端button不显示,点击不反应 cover-view组件内放 <button>联系客服获取更多 </button> 2、微信开发工具 <cover-view> <button type="default-dark" open-type="contact" session-from="weapp" class="guest-button">联系客服获取更多 </button> </cover-view> button显示,但是 open-type="contact"点击不反应,open-type="getPhoneNumber"可以使用。
2019-11-05我也遇到了同样的问题,也按照他说的延迟一会儿在调用全屏也没用!
微信小程序 video默认全屏功能问题描述: 想要实现得功能:进入页面就立即播放video并全屏显示 问题:文档中给出得requestFullScreen进入全屏,无法实现,请问可否实现,如果可以请问应该如何操作[图片] [图片]以下是js代码 // pages/webview/webview.js Page({ data: { }, onLoad: function (options) { //vedioUrl为video地址 this.setData({ vedioUrl: options.vedioUrl }) }, onReady: function () { this.videoContext = wx.createVideoContext('myvideo',this); this.videoContext.requestFullScreen({ direction: 90 }); } }) 以下是wxml代码: <video id='myvideo' src='{{vedioUrl}}' autoplay></video>
2019-01-16