摘要:
// this.navCtrl.pop(); 这个不对 this.navCtrl.back(); //用这个 阅读全文
摘要:
https://dev.polyv.net/2020/videoproduct/v-player-sdk/v-player-sdk-web/v-player-sdk-web-qa/cross-domain/ 阅读全文
摘要:
利用canvas的drawImage() API,第一个参数传video可以将视频当前帧画到画布上,(这里示例是第一帧), 以下代码需要注意:因为跨域限制,必须放到web服务器上运行(比如localhost),如果直接是在硬盘上的文件系统打开是不行(file://...)的。 另外,这里示例上用的是 阅读全文
摘要:
https://blog.csdn.net/sai739295732/article/details/78475821 关键点: 前端JS: video.setAttribute('crossOrigin', 'anonymous'); 服务器(nginx): add_header Access-C 阅读全文
摘要:
1、地址:http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4 2、地址:http://vjs.zencdn.net/v/oceans.mp4 3、地址:https://media.w3.org/2010/05/sintel/trailer.mp4 4、 阅读全文
摘要:
在ionic中,如果使用modalController,按官方文档的示例代码,像这样: //显示界面 async showPopover() { const popover = await this.popoverController.create({ component: MyComponent 阅读全文
摘要:
如果需求只是要求只允许输入数字,那么: HTML5方案: <input type="number" /> ionic组件方案: <ion-input [(ngModel)]="input_value" type="number"></ion-input> 如果需求是可以输入小数,但最多N位,那么: 阅读全文
摘要:
ionic 插件Image Picker 安卓闪退问题 阅读全文
摘要:
ionic3的写法 <ion-content> <div ion-fixed> <!-- stuffs non scrollable --> </div> </ion-content> ionic4的写法 <ion-content> <div slot="fixed"> <!-- stuffs no 阅读全文
摘要:
GetUUID() { var s = []; var hexDigits = "0123456789abcdef"; for (var i = 0; i < 36; i++) { s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1 阅读全文