微信小程序 video组件详解及实例代码

微信小程序 video组件详解及实例代码

视频播放组件与图片加载组件也没啥差别,使用起来也没啥注意的

重要属性:

微信小程序 video组件详解及实例代码

wxml

<!--监听button点击事件--> <button bindtap="listenerButton">点击显示视频组件</button> <!--视频组件src资源地址,binderror为监听错误信息--> <video src="https://mvvideo1.meitudata.com/575c2b652d7375255.mp4" hidden="{{hiddenVideo}}" binderror="listenerVideo" />

js

Page({ data:{ // text:"这是一个页面" hiddenVideo: true }, /** * 监听视频加载错误状态 */ listenerVideo:function(e) { console.log(e.detail.errMsg); }, /** * 监听button点击事件 */ listenerButton:function() { this.setData({ hiddenVideo: !this.data.hiddenVideo }) } })

相关文章:

hello WeApp                      icon组件
Window 
                            text组件                                switch组件

应用生命周期                    button组件                            modal组件
页面生命周期
                    checkbox组件                       toast组件
模块化详                           form组件详                            loading 组件
数据绑定
                           input 组件                             navigator 组件
View组件                          picker组件                             audio 组件
scroll-view组件                 radio组件                              video组件
swiper组件                        slider组件                              Image组件

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzjwgf.html