摘要:
##原理:定义一个名为 "XXX" 的样式/属性,然后使用css的 var() 函数调用该样式/属性 ##基础代码示例 //定义样式/属性:格式必须以--开头,如--XXX :root { --main-color: #000; //主色 --sub-color: #ccc; //副色 } //使用 阅读全文
摘要:
###转自 https://blog.csdn.net/hl_qianduan/article/details/119899037 阅读全文
摘要:
####请求方式 1、【xhr】 new XMLHttpRequest() xhr.open() xhr.send (过于繁琐) 2、jQuery $.get $.post (与Vue react不操作dom的开发思想相悖) 3、fetch (不支持ie) 4、axios (推荐使用) ####视频 阅读全文
摘要:
####连八股文都不懂还指望在前端混下去么 https://juejin.cn/post/7016593221815910408 阅读全文
摘要:
####一份不可多得的 TS 学习指南(1.8W字) https://juejin.cn/post/6872111128135073806 ####TypeScript 类型习题合集 https://github.com/type-challenges/type-challenges/blob/ma 阅读全文
摘要:
####问题 项目中直接使用 this.$refs.searchInput.focus() 会报以下错误 Property 'focus' does not exist on type 'Vue | Element | (Vue | Element)[]' ####原因 ts中类型不明确引起的 ## 阅读全文
摘要:
###更多动画库:https://www.php.cn/js-tutorial-489431.html ####一些demo https://www.dowebok.com/code ####Animate.css 动画库 演示:https://daneden.github.io/animate.c 阅读全文
摘要:
####1、在图片中标注usemap <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap"> ####2、定义map <map name="planetmap"> <area shape=" 阅读全文
摘要:
###如图,此弹框无论测试环境还是正式环境都有可能弹出,为避免被用户看到,需要处理一下。 ####本文参考了:https://blog.51cto.com/u_15082397/4156000 ####方法一:全部更新一遍做到一致,从根本上解决 将HBuilderX升级到最新版本,再重新打包自定义基 阅读全文
摘要:
####1、安装相关依赖 yarn add style-resources-loader vue-cli-plugin-style-resources-loader ####2、在vue.config.js中进行配置 const path = require("path"); pluginOptio 阅读全文