Git的知识点
可以查看张雪峰关于git的介绍,地址
1. 创建git版本库git init 把当前目录变成git可以管理的仓库。
git add 1.txt把1.txt这个文件添加到git仓库,一定要在仓库所在的目录下哟!
git commit -m "add a file" 把文件提交到仓库,-m 后面输入的是本次提交的说明,可以添加多个后一次性提交。
2. 版本控制git log 查看最近的提交历史的操作记录,由最近到最远排序, 添加--pretty=oneline可以简化查询信息。
git reset --hard HEAD^ 回退到上一个版本,HEAD是一个指针,指向当前版本,HEAD^表示上一个版本,HEAD^^表示上上个版本, HEAD~100表示上100个版本,可以确定要回退的版本。
git reflog 查看操作命令历史,然后使用git reset --hard commit_id回到未来的版本。
git status 可以查看当前工作区与暂存区文件提交的状态。
3.工作区与缓存区
使用git add实际上是把文件从工作区添加到暂存区;
使用git co ...
跳转测试
慕课手机
live2D
WebAPP
Web App 开发相关知识物理像素与CSS像素
物理像素(physical pixel ),也可叫做设备像素(dp : device pixel),与设备的物理特性相关,例如屏幕的分辨率,屏幕大小有关。
CSS像素,也可以叫做逻辑像素(logic pixel),或者设备独立像素(device independent pixel),实际开发中使用的就是CSS像素。
设备像素比(dpr : device pixel ratio), dpr=设备像素/CSS 像素(缩放比是1的情况下)。dpr=1为标清屏,dpr>=2为高清屏。缩放是改变CSS像素。
PPI(pixels per inch), 每英寸的物理像素点i,也可以叫做dpi (dots per inch)。
viewport常用写法1<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, maximum-scale=1, minimum-scale=1">
其中width=devic ...
CSS3 动画
1 transformtransform 属性向元素应用 2D 或 3D 转换。该属性允许我们对元素进行旋转、缩放、移动或倾斜例如:旋转 div 元素:
12345678div{transform:rotate(7deg);-ms-transform:rotate(7deg); /* IE 9 */-moz-transform:rotate(7deg); /* Firefox */-webkit-transform:rotate(7deg); /* Safari 和 Chrome */-o-transform:rotate(7deg); /* Opera */}
2 transitiontransition 属性是一个简写属性,用于设置四个过渡属性:· transition-property:规定设置过渡效果的 CSS 属性的名称。· transition-duration:规定完成过渡效果需要多少秒或毫秒。· transition-timing-function:规定速度效果的速度曲线。· transition-delay:规定速度效果的速度曲线。
hexo常用命令
Hexo常用的几个命令1. hexo serverhexo server ,可简写为 hexo s,启动本地服务器预览,默认地址为http://localhost:4000
2. hexo newhexo new 创建一篇新的文章,后接文章名。
3. hexo generatehexo generate,可简写为hexo g,生成静态文件。
4. hexo cleanhexo clean 清除缓存文件 (db.json) 和已生成的静态文件 (public)。
5. hexo deployhexo deploy ,可简写为hexo d,文件生成后立即部署网站
详细可访问Hexo官网查看更多命令。
第一次使用Markdown编辑器
第一次使用Markdown编辑器
12345678#include<studio.h>int main() {int a,b;printf("c=",a+b);return 0;}//this is code area. //男子高校生の日常//男子高中生的日常
123myList = {}fot i in myList:print(i)
123$("#id").onclick(function(){$("#name").val('zyl'); });
我的blog地址:https://www.zyl315.com
blog
| 姓名 |年龄| 班级 ||—-|–|–|–|| Jack | 20 | 1601 || Army | 21 | 1602 |
使用jsDelivr+GitHub CND加速的图床例子
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment