hexo+github搭建自己的博客 发表于 2016-12-03 前期准备工作 首先你要在github上生成name.github.io项目(name是你的注册名不是昵称),并将SSH密钥设置到github上,这里可以参考我git标签下的一篇SSH免密文章 安装hexo npm install -g hexo hexo init s(会生成一个欢迎界面并开启服务,你可以预览) 阅读全文 »
垂直居中,你知道多少 发表于 2016-11-13 | 分类于 CSS 常见垂直居中方式相对定位12345678910.content { position: relative; top: 50%; //垂直居中 margin:0 auto;//水平居中 margin-top: -100px;//减去自身的高度一半 background-color: #6699FF; width: 200px; height: 200px;} 阅读全文 »
H5-CSS3 发表于 2016-10-18 | 分类于 CSS CSS3Animation 首先先定义动画1234567@-webkit-keyframes name { 0% {background:red; left:0px; top:0px;} 25% {background:yellow; left:200px; top:0px;} 50% {background:blue; left:200px; top:200px;} 75% {background:green; left:0px; top:200px;} 100% {background:red; left:0px; top:0px;}} 阅读全文 »