摘要:
// npm init // npm install koa --save-dev // node --harmony app.js const fs = require('fs'); var eachDir = (() => { let queue = []; var eachFiles = (o 阅读全文
摘要:
github上最多星的js编码风格,包括ES5,6,React JSXhttps://github.com/airbnb/javascript#types多国语言版的历史悠久的js编码风格https://github.com/rwaldron/idiomatic.js/tree/master/tra 阅读全文
摘要:
<!-- single --> <div class="target"></div> <div class="outer-div"> <div class="inner-div"></div> </div> 阅读全文
摘要:
Web sqlhttp://www.tutorialspoint.com/html5/html5_web_sql.htmhttp://www.cnblogs.com/dolphinX/p/3405335.html 阅读全文
摘要:
SlickGrid简单介绍 : https://github.com/mleibman/SlickGrid/wiki快速入门 : https://github.com/mleibman/SlickGrid/wiki/Getting-Started使用示例 :https://github.com/ml... 阅读全文
摘要:
.icon { -webkit-transform: rotate(0deg); -webkit-transition: -webkit-transform 0.3s ease;}.box:hover { -webkit-transform: rotate(360deg); -webki... 阅读全文
摘要:
代理就是你的访问通过一台机器来访问网站。。你是主动的,网站是被动的,网站那里不能得到你的真实ip地址。(在公司用IE访问www.baidu.com时,在IE浏览器设置了代理Internet选项-连接-局域网设置)反向代理就是是网站通过一台机器发布到公网。。你访问的时候是直接访问那台代理机器的,然后通... 阅读全文
摘要:
FileReader 实例中有四个方法来读取文件数据1、readAsBinaryString(Blob|File)2、readAsDataURL(Blob|File)3、readAsText(Blob|File)4、readAsArrayBuffer(Blob|File)FileReader 实例包... 阅读全文