上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: const year = new Date().getFullYear() const month = new Date().getMonth() + 1 const days = new Date(year, month, 0).getDate() 记录进步。 阅读全文
posted @ 2021-06-28 14:50 玛卡巴鉲 阅读(41) 评论(0) 推荐(0) 编辑
摘要: <style> @media print { @page { margin: 0; } body { margin: 1.6cm; } } </style> <style> @page { margin: 0; size: auto; } </style> 记录进步。 阅读全文
posted @ 2021-06-25 17:32 玛卡巴鉲 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 禁止右键 oncontextmenu="return false" 禁止复制和剪切: oncopy="return false;" oncut="return false;" 禁止复制 onselectstart="return false" 禁止图片拖动 ondragstart="return f 阅读全文
posted @ 2021-06-25 09:40 玛卡巴鉲 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 《1》上传.csv格式的 <input text="file" accept=".csv" /> 《2》上传.xls格式 <input text="file" accept="application/vnd.ms-excel"/> 《3》上传.xslx格式 <input text="fiel" ac 阅读全文
posted @ 2021-06-07 10:34 玛卡巴鉲 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 代码比较简单,直接上代码: <span @click="sectionChange(child)"></span> sectionChange(child) { const scrollBox = document.querySelector('.report-detail-module') // 阅读全文
posted @ 2021-06-03 10:19 玛卡巴鉲 阅读(1154) 评论(0) 推荐(0) 编辑
摘要: 无需安装软件就能转换,就很棒! 网址:https://www.photopea.com/ Adobe XD 是一款UI/UX全功能设计软件,无需切换软件就能完成界面和交互设计,windows端和macOS端都可以直接打开psd、AI、Sketch文件编辑,也支持导出到 AE,可以说完全处于设计链的顶 阅读全文
posted @ 2021-05-17 11:41 玛卡巴鉲 阅读(4239) 评论(1) 推荐(0) 编辑
摘要: 1. Vue组件 2. jsmind 记录进步。 阅读全文
posted @ 2021-05-12 14:30 玛卡巴鉲 阅读(144) 评论(0) 推荐(0) 编辑
摘要: { "workbench.iconTheme": "vscode-icons", "explorer.confirmDragAndDrop": false, "explorer.confirmDelete": false, //配置eslint "editor.formatOnSave": true 阅读全文
posted @ 2021-04-28 17:15 玛卡巴鉲 阅读(78) 评论(0) 推荐(0) 编辑
摘要: AutomaticPrefetchPlugin会提前发现以前编译中的所有模块,同时监视更改,试图缩短增量构建时间。与PrefetchPlugin相比,PrefetchPlugin可以提前发现单个模块。 警告 由于增量构建时间非常快,因此可能有性能优势,也可能没有。 module.exports = 阅读全文
posted @ 2021-04-26 10:51 玛卡巴鉲 阅读(267) 评论(0) 推荐(0) 编辑
摘要: formatter: function (value) { let ret = "";// 拼接加\n返回的类目项 let maxLength = 4;// 每项显示文字个数 let valLength = value.length;// X轴类目项的文字个数 let rowN = Math.cei 阅读全文
posted @ 2021-04-21 09:56 玛卡巴鉲 阅读(496) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页