上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页
  2017年2月6日
摘要: a:link, a:active, a:visited, a:hover { background: none; -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-tap-highlight-color: transparent; } 阅读全文
posted @ 2017-02-06 16:41 Asina 阅读(1731) 评论(1) 推荐(0) 编辑
  2017年1月30日
摘要: 1. 下载64位版本的mongodb 链接:http://pan.baidu.com/s/1c7r454 密码:x113 2. 在安装mongodb的根目录下新建data目录 cmd进入mongodb的bin目录下,执行: mongod --dbpath D:\data 连接成功: 浏览器打开loc 阅读全文
posted @ 2017-01-30 20:38 Asina 阅读(132) 评论(0) 推荐(0) 编辑
  2017年1月20日
摘要: var Event = { _listeners: {}, // 添加 addEvent: function (type, fn) { if(typeof this._listeners[type] === 'undefined') { this._listeners[type] = []; } i... 阅读全文
posted @ 2017-01-20 23:11 Asina 阅读(233) 评论(0) 推荐(0) 编辑
  2017年1月19日
摘要: 多人开发时经常会碰到冲突: // 现将本地修改存储起来git stash // 暂存了本地修改之后就可以拉代码了git pull // 还原暂存的内容git stash pop stash@{0} 系统提示如下类似的信息: Auto-merging c/environ.cCONFLICT (cont 阅读全文
posted @ 2017-01-19 14:07 Asina 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 解释: filter的一些属性目前只有webkit支持 filter: grayscale(1) 灰度sepia 褐色saturate 饱和度hue-rotate 色相旋转invert 反色opacity 透明度brightness 亮度contrast 对比度blur 模糊drop-shadow 阅读全文
posted @ 2017-01-19 10:53 Asina 阅读(1720) 评论(0) 推荐(1) 编辑
  2017年1月17日
摘要: 项目中有时候用不到jq,需要了解xmlhttp原理,自己写一套函数请求和发送数据! 这个是从网上学习并改造的,自己重写了一遍,可以运行。 阅读全文
posted @ 2017-01-17 17:09 Asina 阅读(269) 评论(0) 推荐(0) 编辑
  2017年1月4日
摘要: // 截取简介字符串为20个字 getProfileCharCode =(val) => { let newVal = ''; let zLen = 0; let eLen = 0; if(val) { for (let i = 0; i = 20) { newVal ... 阅读全文
posted @ 2017-01-04 09:47 Asina 阅读(936) 评论(0) 推荐(0) 编辑
  2016年12月29日
摘要: git工作流 始终保持有master分支(只要有目录,git就自动创建)和develop分支(手动创建) 一、主分支Master二、开发分支Develop三、临时性分支(最后发布要删除的)* 功能(feature)分支* 预发布(release)分支* 修补bug(fixbug)分支四、 功能分支 阅读全文
posted @ 2016-12-29 17:00 Asina 阅读(203) 评论(0) 推荐(0) 编辑
  2016年12月23日
摘要: 注意: 给box设置vertical或block-axis属性(此属性是默认值)其效果似乎表现一致,都可将子容器垂直排列,具体两者有什么实质差别暂时还没有搞清楚。如果父容器选择vertical或block-axis属性对子容器进行垂直排列,其是对父容器的高度进行分配划分。此时如果父容器定义了宽度值, 阅读全文
posted @ 2016-12-23 16:06 Asina 阅读(195) 评论(0) 推荐(0) 编辑
摘要: /*css3 多行显示省略号,也可用于单行*/ .one-line { display: -webkit-box; overflow : hidden; text-overflow: ellipsis; -webkit-line-clamp: 3; -webkit-box-orient: vertical; } 阅读全文
posted @ 2016-12-23 15:32 Asina 阅读(768) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页