摘要: 详细操作 建议选择中科大数据源 安装脚本: /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 卸载脚本: /bin/zsh -c "$(curl -fsSL https://g 阅读全文
posted @ 2024-07-04 17:19 SimoonJia 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 定义监听方法 //监测孩子数量 const mutationObserver = new MutationObserver(mutations => { mutations.forEach(mutation => { if (mutation.type 'childList') { setChild 阅读全文
posted @ 2024-06-24 14:54 SimoonJia 阅读(3) 评论(0) 推荐(0) 编辑
摘要: >input { caret-color: rgba(255, 255, 255, 0.5) !important; } 阅读全文
posted @ 2024-06-18 14:59 SimoonJia 阅读(4) 评论(0) 推荐(0) 编辑
摘要: common.js :global { //下拉框失去焦点样式 .CM_DB-select-selection { background-color: #061437 !important; border: 1px solid #27436D !important; .CM_DB-select-se 阅读全文
posted @ 2024-06-18 11:39 SimoonJia 阅读(3) 评论(0) 推荐(0) 编辑
摘要: gap属性可确定flex布局的间距宽度,(配合flex布局属性使用) gap: 0px 7px; display: flex; justify-content: space-around; 阅读全文
posted @ 2024-06-17 16:29 SimoonJia 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 举例:更改连接方式后需要将远程分支与本地分支同步: 验证远程 URL: 首先,确保你已经正确更改了远程仓库的 URL: git remote -v 获取所有远程分支: 使用 git fetch 命令获取所有远程分支的最新信息: git fetch --all 查看所有本地和远程分支: 列出所有本地和 阅读全文
posted @ 2024-05-20 11:54 SimoonJia 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 要将git仓库的ssh链接切换为https链接,可以按照以下步骤操作: 1. 打开终端,并进入到本地的git仓库目录中。 2. 使用以下命令查看当前git仓库的远程链接: git remote -v 3. 使用以下命令移除当前的ssh远程链接: git remote remove origin 4. 阅读全文
posted @ 2024-05-20 11:40 SimoonJia 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 官网 createPortal(children, domNode, key?) import { createPortal } from 'react-dom'; // ... <div> <p>这个子节点被放置在父节点 div 中。</p> {createPortal( <p>这个子节点被放置在 阅读全文
posted @ 2024-05-16 18:29 SimoonJia 阅读(11) 评论(0) 推荐(0) 编辑
摘要: const maxDistance = 10; const distance = axesCamera.position.length(); if (distance > maxDistance) { axesCamera.position.multiplyScalar(maxDistance / 阅读全文
posted @ 2024-05-15 18:46 SimoonJia 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 格式化树数据: function replaceNameWithTitle(data) { // 遍历数据数组 return data.map(item => { // 复制当前对象,以免修改原始数据 const newItem = { ...item }; // 将 name 属性替换为 titl 阅读全文
posted @ 2024-05-14 16:50 SimoonJia 阅读(13) 评论(0) 推荐(0) 编辑