上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 15 下一页
摘要: // this.navCtrl.pop(); 这个不对 this.navCtrl.back(); //用这个 阅读全文
posted @ 2020-10-13 18:29 johnjackson 阅读(467) 评论(0) 推荐(0) 编辑
摘要: https://dev.polyv.net/2020/videoproduct/v-player-sdk/v-player-sdk-web/v-player-sdk-web-qa/cross-domain/ 阅读全文
posted @ 2020-10-12 15:20 johnjackson 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 利用canvas的drawImage() API,第一个参数传video可以将视频当前帧画到画布上,(这里示例是第一帧), 以下代码需要注意:因为跨域限制,必须放到web服务器上运行(比如localhost),如果直接是在硬盘上的文件系统打开是不行(file://...)的。 另外,这里示例上用的是 阅读全文
posted @ 2020-09-26 19:00 johnjackson 阅读(1109) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/sai739295732/article/details/78475821 关键点: 前端JS: video.setAttribute('crossOrigin', 'anonymous'); 服务器(nginx): add_header Access-C 阅读全文
posted @ 2020-09-26 18:38 johnjackson 阅读(649) 评论(0) 推荐(0) 编辑
摘要: 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、 阅读全文
posted @ 2020-09-26 18:03 johnjackson 阅读(5152) 评论(0) 推荐(1) 编辑
摘要: 在ionic中,如果使用modalController,按官方文档的示例代码,像这样: //显示界面 async showPopover() { const popover = await this.popoverController.create({ component: MyComponent 阅读全文
posted @ 2020-09-24 16:02 johnjackson 阅读(585) 评论(0) 推荐(0) 编辑
摘要: 如果需求只是要求只允许输入数字,那么: HTML5方案: <input type="number" /> ionic组件方案: <ion-input [(ngModel)]="input_value" type="number"></ion-input> 如果需求是可以输入小数,但最多N位,那么: 阅读全文
posted @ 2020-09-24 12:48 johnjackson 阅读(1258) 评论(1) 推荐(0) 编辑
摘要: ionic 插件Image Picker 安卓闪退问题 阅读全文
posted @ 2020-07-26 10:49 johnjackson 阅读(442) 评论(0) 推荐(0) 编辑
摘要: ionic3的写法 <ion-content> <div ion-fixed> <!-- stuffs non scrollable --> </div> </ion-content> ionic4的写法 <ion-content> <div slot="fixed"> <!-- stuffs no 阅读全文
posted @ 2020-07-24 10:17 johnjackson 阅读(1029) 评论(0) 推荐(0) 编辑
摘要: GetUUID() { var s = []; var hexDigits = "0123456789abcdef"; for (var i = 0; i < 36; i++) { s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1 阅读全文
posted @ 2020-06-15 09:31 johnjackson 阅读(312) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 15 下一页