摘要:
阿里云配置中心 https://yundun.console.aliyun.com/?p=cas#/cas/home 证书审核通过后复制到 ecs 阅读全文
摘要:
将原来使用 position: fixed 的元素外层包裹一个 div.fixedWrapper 原贴:StackOverflow 阅读全文
摘要:
主要配置代码: html css main.js 阅读全文
摘要:
不要使用 min-height 改为 height 即可 caniuse: https://caniuse.com/#search=flexbox 阅读全文
摘要:
将 7z 文件下载到 以下 cache 目录并解压 see: issue 阅读全文
摘要:
全局安装一个 electron devtool 关掉 崩溃时选择重新打开 阅读全文
摘要:
项目下新建 .npmrc 文件,加入如下配置: 即使用淘宝的源,重新 npm install 如果速度还是很慢就把 package-lock.json 和 node-modules 删掉,重新 install 阅读全文
摘要:
五个值分别为:x y blur spread color 将 spread 设置成 blur 的负值即可 这种只适用于 offset 和 blur 相差比较小的情况,相差太大的话效果不是很好 see: 1. StackOverflow 2. codepen 阅读全文
摘要:
-k 会保留源文件 阅读全文
摘要:
用户在textarea中输入的换行符,传到后台,再返回前端,展示在div中。 如果需要div显示为与textarea 一致的效果,需添加: 这行代码会将 html标签的换行符也当做一行处理,所以如果不想要那么大间距,将html标签压缩下就可以了 详见MDN:white-space 阅读全文