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

前端之家收集整理的这篇文章主要介绍了微信小程序 video组件详解及实例代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

重要属性

<video
src="http://mvvideo1.meitudata.com/575c2b652d7375255.mp4"
style="width: 100%; height: 100%"
hidden="{{hiddenVideo}}"
binderror="listenerVideo" />

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

})

文章:

原文链接:https://www.f2er.com/weapp/45507.html

猜你在找的微信小程序相关文章