摘要: 原生js实现元素的拖拽和拉伸,需要清楚一下几个要素: 网页可见区域宽: document.body.clientWidth 网页可见区域高: document.body.clientHeight 网页可见区域宽: document.body.offsetWidth (包括边线的宽) 网页可见区域高: 阅读全文
posted @ 2021-06-29 15:20 詹詹123 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 1. scss中使用:export抛出样式给组件参数使用 global.scss中: $spc-head-bg: #545c64; $spc-head-hover-bg: #434A50; $white: white; :export { spcHeadBg: $spc-head-bg; spcHe 阅读全文
posted @ 2021-06-29 10:04 詹詹123 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 在Scoped CSS规范中,使用/deep/写法既不影响到别的地方,又能修改子组件在当前的样式。 /deep/ .el-input { height: 50px; width: calc(100% - 80px); input { background: transparent; border: 阅读全文
posted @ 2021-06-29 09:46 詹詹123 阅读(1014) 评论(0) 推荐(0) 编辑