VideoContext.stop
2020-08-26 16:32 更新
最低支持基础库版本 3.120.10
解释: 停止播放视频
方法参数
无
示例
图片示例
代码示例
<view class="wrap">
<video id="myVideo" enable-danmu="true" src="https://b.bdstatic.com/swan-temp/940fe716b0eaad38f47b209d61657490.mp4" rel="external nofollow" ></video>
<button type="primary" bindtap="videoContextStop">点击停止播放</button>
</view>
Page({
onLoad() {
this.videoContext = swan.createVideoContext('myVideo');
this.videoContext.play();
},
videoContextStop() {
this.videoContext.stop();
}
});
以上内容是否对您有帮助:
更多建议: