摘要: cursor: default; cursor: auto; cursor: not-allowed; cursor: pointer; cursor: wait; cursor:url('绝对路径'),auto; 阅读全文
posted @ 2017-07-26 12:05 lijun8637 阅读(163) 评论(0) 推荐(0) 编辑
摘要: Vuex requires a Promise polyfill in this browser 因为使用了ES6 Promise,而IE浏览器不支持 解决方法: 使用:babel-polyfill npm install --save-dev babel-polyfill 如果使用vue-cli 阅读全文
posted @ 2017-07-26 11:19 lijun8637 阅读(292) 评论(0) 推荐(0) 编辑
摘要: <div class="out"> <div class="a"></div> <div class="b"></div> <div class="c">当父DIV高度变化随里面DIV高度不同而变化的时候,子DIV仍然能充满高度。</div> </div> .out{ border:1px soli 阅读全文
posted @ 2017-07-21 11:13 lijun8637 阅读(5653) 评论(0) 推荐(0) 编辑
摘要: 使用JavaScript将图片拷贝进画布 用JavaScript将画布保持成图片格式 用JavaScript将Canvas内容转化成图片的方法:http://www.webhek.com/post/convert-canvas-image.html 阅读全文
posted @ 2017-07-18 10:22 lijun8637 阅读(4100) 评论(0) 推荐(0) 编辑
摘要: 问:有两个域名一、 file.test.com:1003,二、filer.test.com,网站内容是一样的,访问非80端口的域名比80端口的速度慢了8秒,但必须使用非80端口的域名访问。 ??架设一个ngnix,将到非80端口的请求再转发回80端口。 如何使用URL跳转解决Web服务80端口被封问 阅读全文
posted @ 2017-07-15 14:58 lijun8637 阅读(241) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/skylar/p/webpack-module-bundler.html 阅读全文
posted @ 2017-07-13 15:17 lijun8637 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 一、 a) 解决办法:npm install chalk --save-dev b) import {_Zepto} from '../js/zepto.js' ES6 想要 import 一个模块中的变量等内容必须对其做模块解构,否则只会执行代码而没有任何导入的内容。 c) 无故报错?或配置文件l 阅读全文
posted @ 2017-07-13 10:56 lijun8637 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 顶级域名(一级域名) .com 二级域名 ###.com 三级域名 ###.###.com 相关帖子:https://zhidao.baidu.com/question/646884610909742685.html https://www.zhihu.com/question/29998374 阅读全文
posted @ 2017-07-11 17:15 lijun8637 阅读(207) 评论(0) 推荐(0) 编辑
摘要: --no-color -x $FileName$ --include-path=C:\*********\gulpweb\test 阅读全文
posted @ 2017-07-07 18:28 lijun8637 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 1、循环插入 for (var i=0; i < b.length; i++) { a.push( b[i] ); } 2、 a.push.apply(a,b); b.unshift.apply( b, a ); 例如: a.push.apply(a,[4,5,6]); 等同于 a.push(4,5 阅读全文
posted @ 2017-07-06 17:18 lijun8637 阅读(272) 评论(0) 推荐(0) 编辑