摘要: ##多行 overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; ##鼠标 .reason:hover { height 阅读全文
posted @ 2022-09-21 17:46 xuelin 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 一篇汇总video事件的文章,方便查阅: https://blog.csdn.net/xuehu837769474/article/details/107532487 html部分 <div class="content"> <video width="1416" height="828" ref= 阅读全文
posted @ 2022-09-21 16:10 xuelin 阅读(248) 评论(0) 推荐(0) 编辑
摘要: ###div 中 存在 img标签,由于img标签的 display:inline-block 属性。 #####display:inline-block布局的元素在chrome下会出现几像素的间隙,原因是因为我们在编辑器里写代码的时候,同级别的标签不写在同一 行以保持代码的整齐可读性,即inlin 阅读全文
posted @ 2022-09-21 08:37 xuelin 阅读(223) 评论(0) 推荐(0) 编辑
摘要: this.$router.push({ path: '/home', query: { params: JSON.stringify({ name: 'lokka', age: 18 }) } }); let params = JSON.parse(this.$route.query.params) 阅读全文
posted @ 2022-09-19 22:18 xuelin 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 思路及做法: 鼠标移动到父盒子的时候, 里面所有的子盒子的样式都发生变化的, 只需要直接在hover后面加上空格, 并且加上子盒子的类名 ,里面再写其他样式 .父盒子的类名:hover .子盒子的类名 { //这里写鼠标移入到父盒子里面,子盒子要发生的样式变化 } 温馨提示,遇到父盒子里面的子盒子过 阅读全文
posted @ 2022-09-19 16:24 xuelin 阅读(301) 评论(0) 推荐(0) 编辑
摘要: handel(ide) { let that = this; console.log(that.goodCaseList); let detailData = that.goodCaseList.find((v) => { return v.id == ide; }); 阅读全文
posted @ 2022-09-19 13:29 xuelin 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 1、params 方式传递和接收参数 //传参 this.$router.push({ name: 'checkDetailInfo', params:{ fkdNum:fkdNum, jyayStr:jyayStr, defaultStr:defaultStr, detailViewBtn:det 阅读全文
posted @ 2022-09-19 13:28 xuelin 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 取消勾选设置-功能-compact Folders 阅读全文
posted @ 2022-09-13 17:58 xuelin 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 解决方法: 1、先删除 node_modules 依赖 npm rm -rf node_modules 2、首先安装 报错的插件 npm install --save core-js 3、最后再 npm install 或者 yarn install npm install yarn install 阅读全文
posted @ 2022-09-13 17:24 xuelin 阅读(70) 评论(0) 推荐(0) 编辑
摘要: ###官网文档:https://vuex.vuejs.org/zh/ ###辅助理解的博客:https://blog.csdn.net/m0_70477767/article/details/125155540 #vueX是什么 ####Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式 阅读全文
posted @ 2022-09-09 09:41 xuelin 阅读(106) 评论(0) 推荐(0) 编辑