前端学习
文章平均质量分 57
学习认识前端开发
erzhuerzhu
这个作者很懒,什么都没留下…
展开
-
CSS实现背景模糊/毛玻璃效果
所有代码地址:filter文末也有代码方法一效果原理如果只单纯的想实现背景模糊效果,而背景之上没有其他内容,那么就使用filter(滤镜)就足以,其中包括模糊,亮度,灰度,阴影等等:参考 MDN filter 相关内容。如果在其中上面还有文字,也同样会出现模糊。用下面的方法可以解决方法二效果原理这里就是使用伪元素(before,after),也是我在网上搜到的大多教程的方法,确实是成功了,但是项目编译后该图片的路径确不正确导致无法使用,这里始终没有找到原因。但是小伙伴不失可以试试原创 2021-12-19 16:22:33 · 34548 阅读 · 3 评论 -
npm: command not found
环境:系统:macmaven:3.5.4 和3.8.1java:jdk1.8.0_291.jdkIDE:idea问题描述:用Postman测试接口时,出现的问题:com.alibaba.fastjson.JSONException: illegal identifier : pos 4, line 4, column 2{ "happen_time": "2021-09-11 16:42:44", "type": 4, "lane_direction": 4, "infl原创 2021-09-18 10:52:00 · 2631 阅读 · 0 评论 -
REACT Attempted import error: ‘Component‘ is not exported from ‘./Component‘
环境:系统:macreact:17.0.1问题描述:或者:Attempted import error: 'Component' is not exported from './Component'解决方案:How should I solve “Attempted import error: ‘Component’ is not exported from ‘./Component’.”这里主要是弄清楚export 和 export default 的差别,在import时哪一种需要原创 2021-09-09 22:55:21 · 3290 阅读 · 0 评论 -
ESLint:Trailing Spaces not Allowed
版本和工具VScodewebpack@3.12.0 局部安装vue@2.6.11 局部安装问题描述新手开发,一路默认创建了vue项目,其中就含有ESLint工具,运行的时候就报错ESLint:Trailing Spaces not Allowed解决方案如果想残暴解决,可以按照这个流程:In vscode go to settings ( ctrl+, )In se...原创 2020-05-05 03:15:42 · 1700 阅读 · 0 评论 -
Vue:these dependencies were not found
问题描述用配置的vue一路默认创建项目,想用element组件库,按照element的教程,用npm安装了element-ui@2.13.1,在我的组件文件里写入了import ElementUI from 'element-ui'; import 'element-ui/lib/theme-chalk/index.css';结果报错:解决方案检查你真的是否有安装成功该package,用...原创 2020-05-05 02:52:15 · 3111 阅读 · 0 评论