上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
摘要: 效果图 需求展示:右上角可左右滑动并控制遮罩层显示隐藏;每行显示4个,每次滑动4个 安装 npm install Swiper yarn add Swiper pnpm add Swiper 代码 template <!-- 控制分页 --> <div class="btn" @click="add 阅读全文
posted @ 2023-02-06 15:47 努力挣钱的小鑫 阅读(2327) 评论(0) 推荐(1) 编辑
摘要: 最近买了新的 MacBook Pro 14,第一次接触苹果电脑,很多快捷键不熟悉,因此打算在网上查询后将一些常用的快捷键盘做一个简单的汇总。 ## 2023.2.18 新增 ![image](https://img2023.cnblogs.com/blog/2002005/202302/200200 阅读全文
posted @ 2022-12-09 14:14 努力挣钱的小鑫 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 来自极客时间《图解 V8》 阅读全文
posted @ 2022-12-08 11:33 努力挣钱的小鑫 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 安装 npm install postcss-pxtorem vite.config.ts import postCssPxToRem from "postcss-pxtorem" ...css: { postcss: { plugins: [ postCssPxToRem({ rootValue: 阅读全文
posted @ 2022-10-27 10:25 努力挣钱的小鑫 阅读(1014) 评论(0) 推荐(0) 编辑
摘要: <img class="logo-srkg" :src="getImgUrl('hwtm.png')" alt="" /> const getImgUrl = (src: string): string => { return new URL(`../assets/res-kg/${src}`, i 阅读全文
posted @ 2022-10-17 09:59 努力挣钱的小鑫 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 从0开始搭建一个Vue3.x企业级项目骨架 手把手教你用 vite + vue3 + ts + pinia + vueuse 打造企业级前端项目 阅读全文
posted @ 2022-10-14 16:05 努力挣钱的小鑫 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 效果图 文档 可以先去官网看看文档或者看看我下面的参考博客,把基本配置看懂(英语差的同学可以看下面的翻译)。 3d-force-graph使用及相关设置 github.com/vasturiano/3d-force-graph 3d-force-graph:文档翻译 配置 // 初始化 3d fun 阅读全文
posted @ 2022-10-13 11:03 努力挣钱的小鑫 阅读(1856) 评论(2) 推荐(0) 编辑
摘要: 效果 实现 <video autoplay muted loop> <source src="@/assets/res-kg/video-kg.mp4" type="video/mp4" /> </video> video { position: absolute; top: 0; left: 0; 阅读全文
posted @ 2022-10-13 10:56 努力挣钱的小鑫 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 记录下 效果图 配置项 let myChart: any = null; const categories = [ { name: "错误码", }, { name: "原因", }, { name: "设备", }, { name: "用户操作", }, { name: "现象", }, ]; / 阅读全文
posted @ 2022-09-28 09:13 努力挣钱的小鑫 阅读(888) 评论(0) 推荐(0) 编辑
摘要: postman安装使用教程 Postman汉化中文版 阅读全文
posted @ 2022-09-26 15:56 努力挣钱的小鑫 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 以管理员身份运行 CMD,再使用 nvm 命令进行操作就行。 阅读全文
posted @ 2022-09-22 09:06 努力挣钱的小鑫 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 安装流程参考 windows切换Node版本 阅读全文
posted @ 2022-09-21 16:39 努力挣钱的小鑫 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 效果 代码 参考博客 推荐看这个来配置elementUI环形进度条设置渐变色和修改底色 阅读全文
posted @ 2022-09-21 15:19 努力挣钱的小鑫 阅读(932) 评论(0) 推荐(0) 编辑
摘要: 问题描述 Vue3 + Vite 项目中,对部分组件进行修改后保存,页面无变化。手动刷新页面,依旧无变化;Ctrl+F5刷新页面,依旧无变化; 以为是热更新失效了,参考百度解决后在 vite.config.ts中设置热更新: 但明明已经配置了,还是没有生效,最后看到这篇博客解决问题:点击跳转 解决方 阅读全文
posted @ 2022-09-14 17:02 努力挣钱的小鑫 阅读(1270) 评论(1) 推荐(0) 编辑
摘要: 防抖 function throttle(fun, time) { let timer = null return () => { if (timer) { return } fun() timer = setTimeout(() => { timer = null }, time) } } 节流 阅读全文
posted @ 2022-08-22 11:15 努力挣钱的小鑫 阅读(34) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页