2017年3月17日
摘要: 父->子 input 方式 import {Component,Input} from 'angular2/core'; @Component({ selector: 'child', template: ` <h2>child {{content}}</h2> ` }) class Child { 阅读全文
posted @ 2017-03-17 19:34 XIE7654 阅读(266) 评论(0) 推荐(0) 编辑
摘要: var skyBoxGeometry = new THREE.BoxGeometry( 5000, 5000, 5000 ); var texture = new THREE.TextureLoader().load("images/sky.jpg"); var skyBoxMaterial = n 阅读全文
posted @ 2017-03-17 19:12 XIE7654 阅读(3734) 评论(0) 推荐(0) 编辑
  2017年3月15日
摘要: https://doc.webpack-china.org/guides/development/ 阅读全文
posted @ 2017-03-15 23:29 XIE7654 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 组件生命周期钩子 指令和组件的实例有一个生命周期:新建、更新和销毁。每个接口都有唯一的一个钩子方法,它们的名字是由接口名加上 ng前缀构成的。比如,OnInit接口的钩子方法叫做ngOnInit。指令和组件ngOnInit:当Angular初始化完成数据绑定的输入属性后,用来初始化指令或者组件。ng 阅读全文
posted @ 2017-03-15 15:20 XIE7654 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 语义标签: <article>定义文章</article><aside>定义文章侧边栏</aside><figure>定义一组媒体对象以及文字内容</figure><figcaption>定义figure的标题</figcaption>布局页面时用的语义标签:<nav>定义导航</nav><head 阅读全文
posted @ 2017-03-15 14:06 XIE7654 阅读(127) 评论(0) 推荐(0) 编辑
  2017年3月14日
摘要: npm install --save @types/three 阅读全文
posted @ 2017-03-14 22:42 XIE7654 阅读(197) 评论(0) 推荐(0) 编辑
  2017年3月3日
摘要: overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp :2;-webkit-box-orient: vertical; 火狐需要设置行高,直接影藏没有... 阅读全文
posted @ 2017-03-03 12:01 XIE7654 阅读(279) 评论(0) 推荐(0) 编辑
  2017年3月2日
摘要: git branch <name> 创建本地分支 git checkout <name> 切换分支 git checkout -b <name> 创建并切换分支 git merge <name> 合并分支 git checkout - 快速切换上一个分支 git branch 查看本地分支 git 阅读全文
posted @ 2017-03-02 09:54 XIE7654 阅读(107) 评论(0) 推荐(0) 编辑