Element-ui之ElScrollBar组件滚动条的使⽤⽅法
在使⽤vue + element-ui搭建后台管理页⾯的时候,做了⼀个头部、侧栏、⾯包屑固定的布局,导航栏和主要内容区域当内容超出时⾃动滚动。
使⽤的原因:
原来是采⽤优化浏览器样式的⽅式,对滚动条进⾏样式调整。但这个⽅法并不兼容⽕狐浏览器,在⽕狐访问时依然是浏览器默认的滚动条样式。
.sidebar {
position: fixed;
border-right: 1px solid rgba(0,0,0,.07);
overflow-y: auto;
position: absolute;
top: 0;
bottom: 0;
left: 0;
transition: transform .25s ease-out;
width: 300px;
z-index: 3;
}
.sidebar::-webkit-scrollbar {
width: 4px
}
.sidebar::-webkit-scrollbar-thumb {
background: transparent;
border-radius: 4px
}
.sidebar:hover::-webkit-scrollbar-thumb {
background: hsla(0,0%,53%,.4)
}
.sidebar:hover::-webkit-scrollbar-track {
background: hsla(0,0%,53%,.1)
}
灵感来源
在翻看element-ui官⽹的⽂档时,发现其左侧导航和右边的内容超出屏幕时,滚动条的样式⽐较⼩巧,通过浏览器审查⼯具查看,发现它是使⽤了el-scrollbar的样式,跟element-ui的组件样式命名⼀致。但⽂档中并没有关于这个
scrollbar组件的使⽤⽂档,搜索⼀番得知这是⼀个隐藏组件,官⽅在 github 的 issues 中表⽰不会写在⽂档中,需要⽤的⾃⼰看源码进⾏调⽤。
最终实现效果
实现步骤
⼀、阅读源码
通过阅读源码,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'
}
}
⼆、在页⾯中使⽤ el-scrollbar组件
<template>
<div>
<el-scrollbar :native="false" wrapStyle="" wrapClass="" viewClass="" viewStyle="" noresize="false" tag="section">
<div>
<p v-for="(item, index) in 200" :key="index">{{index}} 这⾥是⼀些⽂本。</p>
</div>
<el-scrollbar>
</div>
</template>
以上代码就是对el-scrollbar的使⽤了,属性不需要⽤的就不⽤写。
源码
源码在node_modules⽬录下的element-ui/packages/scrollbar
模块⼊⼝index.js,从main导⼊ scrollbar并提供⼀个安装⽅法注册成全局组件
import Scrollbar from './src/main';
/* istanbul ignore next */
Scrollbar.install = function(Vue) {
Vueponent(Scrollbar.name, Scrollbar);
};
export default Scrollbar;
src/main.js 源码
// reference github/noeldelgado/gemini-scrollbar/blob/master/index.js
import { 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 = (
<div
ref="wrap"
style={ style }
onScroll={ this.handleScroll }
class={ [this.wrapClass, 'el-scrollbar__wrap', gutter ? '' : 'el-scrollbar__wrap--hidden-default'] }>  { [view] }
</div>
);
let nodes;
if (!this.native) {
nodes = ([
wrap,
<Bar
move={ veX }
size={ this.sizeWidth }></Bar>,
<Bar
vertical
move={ veY }
size={ this.sizeHeight }></Bar>
]
);
} else {
nodes = ([
<div
ref="wrap"
class={ [this.wrapClass, 'el-scrollbar__wrap'] }
style={ style }>
{ [view] }
</div>
]);
}
return h('div', { class: 'el-scrollbar' }, nodes);
},
methods: {
滚动条变短是什么原因handleScroll() {
const wrap = this.wrap;
},
update() {
let heightPercentage, widthPercentage;
const wrap = this.wrap;
if (!wrap) return;
heightPercentage = (wrap.clientHeight * 100 / wrap.scrollHeight);
widthPercentage = (wrap.clientWidth * 100 / wrap.scrollWidth);
this.sizeHeight = (heightPercentage < 100) ? (heightPercentage + '%') : '';
this.sizeWidth = (widthPercentage < 100) ? (widthPercentage + '%') : '';
}
},
mounted() {
if (this.native) return;
this.$nextTick(this.update);
!size && addResizeListener(this.$size, this.update);
},
beforeDestroy() {
if (this.native) return;
!size && removeResizeListener(this.$size, this.update);
}
};
⽰例
<div >
<!-- 注意需要给 el-scrollbar 设置⾼度,判断是否滚动是看它的height判断的 -->
<el-scrollbar > <!-- 滚动条 -->
<div ></div>
<div ></div>
<div ></div>
</el-scrollbar><!-- /滚动条 -->
</div>
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。