Go开发环境配置保姆式教程,VScode
摘要:需求:Go开发环境配置以及VScode插件安装 1.1 安装go1.20.6.windows-amd64 .msi 下载地址:https://golang.google.cn/dl/ (1) 选择Windows版本go1.20.6.windows-amd64 .msi (2) 下载完成后,双击.ms
阅读全文
posted @
2023-07-31 15:11
芹菜是一根葱
阅读(242)
推荐(0) 编辑
VScode 中golang 调试 F5,json文件内容更改 Go
摘要:调试:在Vscode软件中调试.go文件代码 1.1.1 确保调试文件正常运行 准备好.go文件,并且该文件能正常运行,终端输入命令运行程序,如:go run time.go 测试代码: package main import ( "fmt" "time" ) func main() { fmt.P
阅读全文
posted @
2023-07-31 13:52
芹菜是一根葱
阅读(1031)
推荐(1) 编辑
用CSS样式 @keyframes、animation写一个旋转立体模型、动画模型,vue2
摘要:需求:画一个正方体,让物体一直旋转 环境:vue2、css 效果: 代码: 模型 1 <template> 2 <div> 3 <!-- 旋转立体图 --> 4 <div class="cube"> 5 <div class="face front"></div> 6 <div class="fac
阅读全文
posted @
2023-07-26 18:12
芹菜是一根葱
阅读(176)
推荐(0) 编辑