上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 26 下一页
摘要: css - 隐藏滚动条 chrome .tabs::-webkit-scrollbar { width: 0px; height: 0px; } ie // 此更改允许在容器上滚动并隐藏IE上的条. .container{ -ms-overflow-style: none; } margin 负值 阅读全文
posted @ 2022-05-13 17:53 zc-lee 阅读(939) 评论(0) 推荐(12) 编辑
摘要: git - 分支管理1.3 参考资料 菜鸟教程 Git创建一个空的分支 Git教程 总结 查看分支:git branch 创建分支:git branch <name> 切换分支:git checkout <name>或者git switch <name> 创建+切换分支:git checkout - 阅读全文
posted @ 2022-04-24 16:02 zc-lee 阅读(39) 评论(0) 推荐(0) 编辑
摘要: axios - 文件上传、下载进度 axios onDownloadProgress axios({ url: 'https://www.***.com/***.png', method: 'get', onDownloadProgress (progress) { console.log(Math 阅读全文
posted @ 2022-04-19 15:31 zc-lee 阅读(681) 评论(0) 推荐(12) 编辑
摘要: bat 命令 查找指定后缀名文件 @dir>[输出文件名].[格式后缀] /s /a /b [指定盘]:\*.[格式后缀] @dir>name.txt /s /a /b D:\*.mp4 批量修改文件后缀名 把所有待改文件放在同一个文件夹下 该文件夹下新建记事本 书写形如:rend *.flac * 阅读全文
posted @ 2022-04-15 19:47 zc-lee 阅读(95) 评论(0) 推荐(0) 编辑
摘要: html - input - accept 上传文件类型 在上传文件的时候,需要限制指定的文件类型。 <input type="file" accept="image/*" /> accept表示可以上传文件类型,image表示图片,*表示所有支持的格式。 accept暂时只支持type="file 阅读全文
posted @ 2022-04-01 14:06 zc-lee 阅读(1426) 评论(0) 推荐(12) 编辑
摘要: vscode - plugs - koroFileHeader 参考资料 gitee github 简介 功能 头部注释 注释图案 函数注释: 自动提取函数参数 配置 全部配置 /** koroFileHeader 自定义配置 */ // 头部注释,默认设置: /** { Author: 'your 阅读全文
posted @ 2022-03-31 09:57 zc-lee 阅读(310) 评论(0) 推荐(2) 编辑
摘要: tool - markdown emoji 参考资料 Markdown中的Emoji Emoji的简易代码全列表参见:Emoji Cheat Sheet 通用代码 Unicode 使用格式为:&#x+unicode+; 阅读全文
posted @ 2022-03-26 19:09 zc-lee 阅读(25) 评论(0) 推荐(1) 编辑
摘要: tool - 目录树的生成 命令行 进入项目根目录 cd ./demo 运行生成目录树命令行 tree /f > 文件名.后缀 tree /f > treeFileName.md 阅读全文
posted @ 2022-03-25 17:35 zc-lee 阅读(47) 评论(0) 推荐(1) 编辑
摘要: nginx - 配置 重定向 代理 # "/usr/local/nginx/conf/conf.d/creditcardbankweb.conf" server { listen 11300; # server_name localhost; # 部分版本不支持localhost server_na 阅读全文
posted @ 2022-03-25 17:05 zc-lee 阅读(427) 评论(0) 推荐(2) 编辑
摘要: nginx - 全局变量和指令 全局变量 下面是可以用作if判断的全局变量 $args : 这个变量等于请求行中的参数,同$query_string $content_length : 请求头中的Content-length字段。 $content_type : 请求头中的Content-Type字 阅读全文
posted @ 2022-03-25 16:19 zc-lee 阅读(884) 评论(0) 推荐(6) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 26 下一页