06 2017 档案

摘要:我们知道 web复制 chrome给我们提供了 阅读全文
posted @ 2017-06-15 16:36 _白马非马 阅读(446) 评论(0) 推荐(0) 编辑
摘要:js中 观察者 之前我们一般通过事件机制完成 ex: 注册监听 Event.listen('changeName', name => console.log(name)) 派发事件 Event.trigger('changeName', name ) 那么es6中 我们可以通过如下方式 具体参考 h 阅读全文
posted @ 2017-06-15 10:09 _白马非马 阅读(2016) 评论(0) 推荐(0) 编辑
摘要:1 webpack --display-modules --display-chunks 可以展示出 打包的全部trunk webpack 配置 生成分析文件 http://chrisbateman.github.io/webpack-visualizer/ 分析 CommonsChunkPlugi 阅读全文
posted @ 2017-06-14 19:43 _白马非马 阅读(370) 评论(0) 推荐(0) 编辑
摘要:other > bytefunction covertSizeToByte(size) { // sizes = ['B','KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; let temp = size; if (size.endsWith('KB' 阅读全文
posted @ 2017-06-14 12:36 _白马非马 阅读(735) 评论(0) 推荐(0) 编辑
摘要:关于用web 实现 复制粘贴 等 自定义右键菜单功能 ,网上大部分文章都是用document.execCommand(xxxx) 来实现, 然鹅, document.execCommand(xxxx) 是ie独家提供的,所以像ff,chrome等游览器是没办法用的,(当然 有的一些命令chrome 阅读全文
posted @ 2017-06-13 20:20 _白马非马 阅读(7138) 评论(0) 推荐(0) 编辑
摘要:cnpm install rimraf -g package.json 可以像下面这样配置, 这样 每次build时候 都会把原来build好的 全部删除 重新编译 { "name": "webpack-ensure", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "... 阅读全文
posted @ 2017-06-12 11:52 _白马非马 阅读(534) 评论(0) 推荐(0) 编辑
摘要:参考内容:http://www.cnblogs.com/ArthurPatten/p/3317263.html 阅读全文
posted @ 2017-06-06 18:18 _白马非马 阅读(1348) 评论(0) 推荐(0) 编辑