摘要: // 节流 function throttle(fn, delay, asThis) { let timer = null; return (...args) => { if (timer) return fn.call(asThis, ...args) timer = setTimeout(() 阅读全文
posted @ 2024-06-06 13:27 codejnp 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 修改git账号密码后,进行git提交时报错 $ git push origin develop remote: HTTP Basic: Access denied fatal: Authentication failed for 'http://xxx/web.git/' 重新设置下git信息 gi 阅读全文
posted @ 2024-05-11 15:15 codejnp 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 使用axios下载文件时,当下载出错,后端返回错误信息时,需要先通过FileReader将Blob对象转换为文本,然后将文本转换为JSON对象,最后将JSON对象中的message属性作为错误信息展示给用户。 const fileReader = new FileReader(); fileRead 阅读全文
posted @ 2024-05-09 09:58 codejnp 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 实现效果 实现注意 mix-blend-mode: color-dodge; const calcX = ((y - box.y - box.height / 2) / multiple) * -1; 实现代码 <div id="element"></div> body { height: 100v 阅读全文
posted @ 2024-03-24 11:33 codejnp 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 实现效果 实现代码 <p> Lorem ipsum dolor sit amet consectetur adipisicing elit. <a >Mollitia nostrum placeat consequatur deserunt velit ducimus possimus commod 阅读全文
posted @ 2024-03-24 11:19 codejnp 阅读(3) 评论(0) 推荐(0) 编辑