element ui——滚动条组件(elscrollbar)修改.el-尊龙游戏旗舰厅官网
尊龙游戏旗舰厅官网
收集整理的这篇文章主要介绍了
element ui——滚动条组件(elscrollbar)修改.el-scrollbar__wrap和el-scrollbar__view的css属性
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
el-scrollbar:element ui隐藏组件。
注意事项:
1.el-scrollbar的父层要有固定高度
2.el-scrollbar的高度要设成100%
3.如果出现横滚动条,添加overflow-x:hidden;
// reference https://github.com/noeldelgado/gemini-scrollbar/blob/master/index.jsimport { addresizelistener, removeresizelistener } from 'element-ui/src/utils/resize-event'; import scrollbarwidth from 'element-ui/src/utils/scrollbar-width'; import { toobject } from 'element-ui/src/utils/util'; import bar from './bar';/* istanbul ignore next */ export default {name: 'elscrollbar',components: { bar },props: {native: boolean,wrapstyle: {},wrapclass: {},viewclass: {},viewstyle: {},noresize: boolean, // 如果 container 尺寸不会发生变化,最好设置它可以优化性能tag: {type: string,default: 'div'}},data() {return {sizewidth: '0',sizeheight: '0',movex: 0,movey: 0};},computed: {wrap() {return this.$refs.wrap;}},render(h) {let gutter = scrollbarwidth();let style = this.wrapstyle;if (gutter) {const gutterwith = `-${gutter}px`;const gutterstyle = `margin-bottom: ${gutterwith}; margin-right: ${gutterwith};`;if (array.isarray(this.wrapstyle)) {style = toobject(this.wrapstyle);style.marginright = style.marginbottom = gutterwith;} else if (typeof this.wrapstyle === 'string') {style = gutterstyle;} else {style = gutterstyle;}}const view = h(this.tag, {class: ['el-scrollbar__view', this.viewclass],style: this.viewstyle,ref: 'resize'}, this.$slots.default);const wrap = (通过阅读源码,scrollbar组件暴露了 native, wrapstyle, wrapclass, viewclass, viewstyle, noresize, tag 这7个 props属性
props: {native: boolean, // 是否使用本地,设为true则不会启用element-ui自定义的滚动条wrapstyle: {}, // 包裹层自定义样式wrapclass: {}, // 包裹层自定义样式类viewclass: {}, // 可滚动部分自定义样式类viewstyle: {}, // 可滚动部分自定义样式noresize: boolean, // 如果 container 尺寸不会发生变化,最好设置它可以优化性能tag: { // 生成的标签类型,默认使用 `div`标签包裹type: string,default: 'div'} }注: wrapstyle和viewstyle必须以分号;结尾。
https://www.jianshu.com/p/6538698578f5/
https://blog.csdn.net/zhouweihua138/article/details/80077311
总结
以上是尊龙游戏旗舰厅官网为你收集整理的element ui——滚动条组件(elscrollbar)修改.el-scrollbar__wrap和el-scrollbar__view的css属性的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇:
- 下一篇: