06 2021 档案

摘要:原因: node-sass或者sass-loader版本过高,我的node版本是 我装的版本是,自测可用。 "node-sass": "^4.14.1", "sass-loader": "^7.2.0" 安装命令:npm i sass-loader@7.2.0 node-sass@4.14.1 -D 阅读全文
posted @ 2021-06-29 16:42 敲敲碰碰 阅读(510) 评论(0) 推荐(0)
摘要:然后将红框内的部分更换为:vscode.cdn.azure.cn/,在浏览器粘贴打开即可。 转:https://zhuanlan.zhihu.com/p/112215618 阅读全文
posted @ 2021-06-29 16:29 敲敲碰碰 阅读(157) 评论(0) 推荐(0)
摘要://驼峰转下划线 function humpToUnderline(str){ return str.replace(/([A-Z])/g,"_$1").toLowerCase() } //下划线转驼峰 function toCamel(str){ return str.replace(/([^_] 阅读全文
posted @ 2021-06-28 17:26 敲敲碰碰 阅读(253) 评论(1) 推荐(0)
摘要:url: https://www.baidu.com?test=111 let url = new URL(window.location.href);let parameterZ = url.searchParams.get("test");console.log(parameterZ); // 阅读全文
posted @ 2021-06-28 10:39 敲敲碰碰 阅读(667) 评论(0) 推荐(0)
摘要:box-shadow: 0 0 20px 0 #ffff8d,0 0 0 2px #ffd180,0 0 0 2000px rgba(0,0,0,.2)!important; 效果: 阅读全文
posted @ 2021-06-28 10:31 敲敲碰碰 阅读(91) 评论(0) 推荐(0)