学习SVG
svg学习解决图标的最佳方案,平时我们添加图标的时候可能会对图标进行放大和缩小的处理,当图标被放大以后图标像素可能会失真,这样对用户视觉效果有一定的影响,那么怎么解决呢,于是就想到可以尝试用svg解决这个问题Svg 是通过对图形进行绘制而形成的
使用方式 <svg width='100' height='100'>...</svg>创建一个100*100的画布```
一·绘制种类绘制矩形-rect 123<svg width="110" height="110"> <rect width='110' height='110' fill='yellow' stroke-width='4' stroke='blue' /> </svg>
说明:
Width:宽度
Height:高度
fill:填充颜色
stroke-w ...
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
弹窗可拖拽弹窗
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220 ...
首发的博客-如何通过HEXO+github 创建属于自己的博客
作为一个it打工人,怎么没有一个属于自己的的博客呢,于是我在网上各种搜索,查询各种教程,最后终于创建了一个自己的博客,创建完成之后,就迫不及待地创建了我的第一篇博客文章—-“如何通过HEXO+github 创建属于自己的博客”我用到的依赖包: 12"hexo-deployer-git": "^4.0.0", nvm("node":"16.14.1",npm)
由于我有git账号,注册账号的过程忽略,这里就不说了。
一、安装hexo1、 在自己经常存代码的文件夹中,在顶部搜索栏中输入cmd,打开终端,如图:
2、 安装hexo,如图
可以全局安装12npm install -g hexo-cli也可以局部安装1npm install hexo
3、 运行hexo init xxx(项目名称),如图进入创建的文件夹,按照步骤1进入cmd中,输入npm install然后输入hexo s 此时一个简单的hexo就完成啦!如图:
二、更换主题1、 打开hexo官方文档选择一个自己喜欢的主题,将git地址克隆 ...