2017年8月4日
摘要: http://caniuse.com 阅读全文
posted @ 2017-08-04 14:46 XIE7654 阅读(111) 评论(0) 推荐(0) 编辑
  2017年8月1日
摘要: 在一个*ngFor中,如果同时使用了*ngIf将导致转化为template出错,那么*ngFor中我们如果也想条件性渲染部分跳过呢?放弃语法糖可以做到 <p *ngFor="let hero of heroes">{{hero.name}}<p> /* */ //只显示cmx除外的英雄 <templ 阅读全文
posted @ 2017-08-01 14:55 XIE7654 阅读(1043) 评论(0) 推荐(0) 编辑
  2017年7月28日
摘要: set SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/ npm install node-sassnode版本6.9.1 阅读全文
posted @ 2017-07-28 17:02 XIE7654 阅读(2139) 评论(0) 推荐(0) 编辑
  2017年7月19日
摘要: <script> window.onload=function () { document.addEventListener('touchstart',function (event) { if(event.touches.length>1){ event.preventDefault(); } } 阅读全文
posted @ 2017-07-19 16:25 XIE7654 阅读(163) 评论(0) 推荐(0) 编辑
  2017年6月25日
摘要: 按Ctrl+Alt+Enter组合键 阅读全文
posted @ 2017-06-25 19:24 XIE7654 阅读(188) 评论(0) 推荐(0) 编辑
  2017年6月23日
摘要: sass --watch src:src --style compact 阅读全文
posted @ 2017-06-23 17:56 XIE7654 阅读(116) 评论(0) 推荐(0) 编辑
  2017年6月10日
摘要: select { /*Chrome和Firefox里面的边框是不一样的,所以复写了一下*/ border: solid 1px #000; /*很关键:将默认的select选择框样式清除*/ appearance:none; -moz-appearance:none; -webkit-appeara 阅读全文
posted @ 2017-06-10 16:20 XIE7654 阅读(224) 评论(0) 推荐(0) 编辑
  2017年6月9日
摘要: var o={flag:true}; var test=!!o.flag;//等效于var test=o.flag||false; alert(test); 由于对null与undefined用!操作符时都会产生true的结果, 所以用两个感叹号的作用就在于, 如果明确设置了o中flag的值(非 n 阅读全文
posted @ 2017-06-09 19:13 XIE7654 阅读(134) 评论(0) 推荐(0) 编辑
  2017年6月7日
摘要: @mixin transform ($x) { transform: $x; -ms-transform: $x; -moz-transform: $x; -webkit-transform: $x; -o-transform: $x;} @include transform(translate(- 阅读全文
posted @ 2017-06-07 17:54 XIE7654 阅读(245) 评论(0) 推荐(0) 编辑
  2017年6月2日
摘要: var myDate = new Date();myDate.getFullYear(); //获取完整的年份(4位,1970-????)myDate.getMonth(); //获取当前月份(0-11,0代表1月)myDate.getDate(); //获取当前日(1-31)myDate.getD 阅读全文
posted @ 2017-06-02 20:29 XIE7654 阅读(243) 评论(0) 推荐(0) 编辑