摘要: 格式化经过压缩的js文件 有时候经常需要在VSC里面打开一个经过混淆和压缩的js文件,普通的格式化工具无法很好的满足需求 使用 阅读全文
posted @ 2021-07-17 18:50 内心澎湃的水晶侠 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 如何编译一个vsix 给 VSC 用? 先运行 npm install -g vsce 再运行 vsce package 这个命令会打包出来一个 vsix 文件,然后在VSC中就可以安装使用了 一个VSC的插件,我如何配置插件需要的参数? "configuration": { "title": "T 阅读全文
posted @ 2021-07-17 18:47 内心澎湃的水晶侠 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 今天发现在VS里面,使用TFS 源代码管理工具,想批量处理大量文件时,在VS里面用右键菜单里命令操作太过繁琐,我得一项一项去点 发现可以是用命令完成: tf.exe move "$/My Project/V*" "$/My Project/Archive" 更多命令可以谷歌tfs API,这样比在V 阅读全文
posted @ 2021-07-17 18:45 内心澎湃的水晶侠 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 常见的外观 outline: none; p { border:red solid thin; outline-style:solid; outline-color:#00ff00; outline-width:1px; } 元素border外面的线,不占据空间 resize: none; 仅仅是给 阅读全文
posted @ 2021-07-17 18:42 内心澎湃的水晶侠 阅读(57) 评论(0) 推荐(0) 编辑
摘要: #test2 { width: 100px; height: 100px; border-radius: 25px; background-color: rebeccapurple; } #test2 { width: 100px; height: 100px; border-radius: 50p 阅读全文
posted @ 2021-07-17 18:32 内心澎湃的水晶侠 阅读(34) 评论(0) 推荐(0) 编辑
摘要: .container { display: flex; width: 800px; height: 150px; } .item { font-size: 50px; font-weight: 500; width: 200px; text-align: center; } 一、容器属性,子元素排列 阅读全文
posted @ 2021-07-17 18:07 内心澎湃的水晶侠 阅读(48) 评论(0) 推荐(0) 编辑