摘要: git 创建仓库 noatnu@sobeautiful MINGW64 ~ $ git config --list core.symlinks=false core.autocrlf=true core.fscache=true color.diff=auto color.status=auto c 阅读全文
posted @ 2017-02-16 14:52 非洲来的蚂蚁 阅读(355) 评论(0) 推荐(0) 编辑
摘要: 第一次使用,注册用户名和设置邮箱noatnu@sobeautiful MINGW64 ~$ git config --global user.name "blake"noatnu@sobeautiful MINGW64 ~$ git config --global user.ema... 阅读全文
posted @ 2017-02-15 21:14 非洲来的蚂蚁 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1) 主题,把下载好的主题包放在C:\Users\jikey(用户名).WebIde10\config\colors目录下,然后重启webstorm,settings –> colors & fonts –>scheme name中选择主题名。 如果出现特别长代码对齐白线,在Edi... 阅读全文
posted @ 2015-07-28 21:51 非洲来的蚂蚁 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 渐变分为4类 1:线性渐变(Linear Gradients)- 向下/向上/向左/向右/对角方向 2:径向渐变(Radial Gradients)- 由它们的中心定义 3:对角渐变 4:角度渐变 下面是我写的代码 div{float: left;width: 100px;height:... 阅读全文
posted @ 2015-06-11 14:33 非洲来的蚂蚁 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 先放下我写的代码 .rex{ position: absolute; top: 0px;left: 0px;width: 200px;height: 200px; border-radius: 5px;border: 1px solid #ccc; font-size: 125pt;text... 阅读全文
posted @ 2015-06-11 13:40 非洲来的蚂蚁 阅读(275) 评论(0) 推荐(0) 编辑
摘要: transform的兼容性情况如下: IE10/Firefox/Opera支持transform属性 IE9支持替代的-ms-transform属性仅支持2D转换 Safari和Chrome支持替代的-webkit-transform属性(3D和2D转换) Opera只支持2D转换 细解下 s... 阅读全文
posted @ 2015-06-11 13:19 非洲来的蚂蚁 阅读(180) 评论(0) 推荐(0) 编辑
摘要: transition,中文译为过渡,在CSS中表示属性渐进变化的效果。例如改变某个元素的宽度,从初始的100元素到300元素。 废话少说先来一段 .content{ height: 100px; width: 100px; background-color:black; -webkit-tr... 阅读全文
posted @ 2015-06-11 13:04 非洲来的蚂蚁 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 去掉下划线 a{text-decoration: none;} 圆角 border-radius:10px; IE9以上 去掉li列表的圆点list-style-type: none;或者list-style:none; word-wrap 允许长单词换行到下一行: p.test ... 阅读全文
posted @ 2015-06-07 12:07 非洲来的蚂蚁 阅读(278) 评论(0) 推荐(0) 编辑