
前端
javafg
一枚java程序猿,分享一些java项目实战经验与日常开发记录等过程,期待您的关注
展开
-
vue2脚手架开发总结
vue2脚手架开发总结原创 2022-09-15 17:06:42 · 436 阅读 · 0 评论 -
vue2常用概念总结
vue2常用概率总结原创 2022-09-15 16:35:52 · 385 阅读 · 0 评论 -
vscode启动项目时报错:Use // eslint-disable-next-line to ignore the next line,可以这样来解决
产生的原因:项目创建时设置了使用 eslint 进行代码规范检查。解决办法:找到webpack.base.conf.js文件,并且将下面这行代码注释掉。 具体位置如下图所示: 保存后,再重新使用执行 npm run dev 就可以了...原创 2022-02-11 16:00:57 · 1048 阅读 · 0 评论 -
npm安装不了node-sass,要注意node与node-sass的版本冲突问题
npm安装不了node-sass,要注意node与node-sass的版本冲突问题原创 2022-01-26 16:27:21 · 1636 阅读 · 0 评论 -
有多张图片,需要手动点击两边按钮,进行切换图片,并动态隐藏两边按钮
1.html内容<div id="iz" onclick="upMove(this);return false" style="line-height: 145px;margin: 0 15px 0 0;height: 129px;"><img id="zjt" src="imagesSwyt/zjtl.png" style="width: 22px;height: 34px;"></div> <ul style="width:6原创 2021-06-30 15:52:07 · 268 阅读 · 0 评论 -
解决vscode里Eslint的检测机制报错You may use special comments to disable some warnings.
vscode里报以下错误You may use special comments to disable some warnings.Use // eslint-disable-next-line to ignore the next line.Use /* eslint-disable */ to ignore all warnings in a file.解决办法:取消Eslint的检测机制,将userEslint的值改为false即可...原创 2021-01-28 16:32:42 · 1559 阅读 · 2 评论 -
整理下经常要用到的css样式
字体属性:(font)大小 {font-size: x-large;}(特大) xx-small;(极小) 一般中文用不到,只要用数值就可以,单位:PX、PD样式 {font-style: oblique;}(偏斜体) italic;(斜体) normal;(正常)行高 {line-height: normal;}(正常) 单位:PX、PD、EM粗细 {font-weight: bold;}(粗体) lighter;(细体) normal;(正常)变体 {font-variant: small-c原创 2021-01-05 09:54:31 · 167 阅读 · 0 评论