uni-app视频默认全屏播放
2021/02/02 标签:
uni-app
在做小程序时,遇到播放视频,希望直接点击视频便全屏播放,uniapp 文档上也有介绍createvideocontext
重要的事情说三遍 this this this,记得createVideoContext第一个参数为video的ID,第二个参数组件实例this
this.videoContext = uni.createVideoContext(id,this); this.videoContext.requestFullScreen();
<video id="myVideo" :src="videoUrl" @fullscreenchange="fullscreenchange"></video>
退出全屏时,停止播放
fullscreenchange (e){ if(!e.detail.fullScreen){ this.videoContext.stop() }}
上一篇:
JS取出两个数组中的不同或相同元素
下一篇:
deepMerge深合并代码对比
静水缘首页
刘丕水+宋静静于2007年9月相识于山东理 工大学,毕业后2011年相恋,共甘苦,历 时四年,终于在11月23号拿到了红本本, 组建了自己的小家庭......文章分类
最新文章
- nodejs私钥加密公钥解密的一个例子
- uniapp和微信小程序判断程序运行在开发或者测试或者线上版本的方法分别是什么
- electron使用electron-builder打包后模块包含exe文件执行失败
- Compile is disallowed on the main thread, if the buffer size is larger than 4KB
- better-sqlite3简介及常用操作
- nodejs 操作数据库的库
- nodejs使用http-proxy库实现多个域名代理和同时代理websocket的例子,代理包含https和http两种协议
- iis配置反向代理
- javascript伪多线程代码
- ip所在地址段判断