8: this.videoContext = wx.createVideoContext('myVideo') // 输入弹幕信息 inputBullet(e) { // console.log("e==", e) let inputValue = e.detail.value.trim() if(inputValue != ""){ this.data.inputValue = inputValue }else{ this.data.inputValue = "哈哈哈,真搞笑!" } }, // 发送视频弹幕 sendBullet() { this.videoContext.sendDanmu({ text: this.data.inputValue, color: getRandomColor() }) }, // 视频播放 play(){ this.videoContext.play() }, // 视频暂停 pause(){ this.videoContext.pause() } }) autoplay="true" loop="true" src="../mp4/脑袋和球互换.mp4" bindblur="inputBullet" <button bindtap="play">播放</button> <button bindtap="pause">暂停</button> <button bindtap="sendBullet">发送弹幕</button>
安卓真机videoContext.pause()方法不起作用?安卓真机videoContext.pause()方法不起作用? 安卓版本5.1.1 微信版本7.0.16 基础库版本 2.12.2
2020-12-18