Vue.js桌面端自定义滚动条组件之美化滚动条VScroll
(编辑:jimmy 日期: 2024/11/1 浏览:3 次 )
前言
前段时间有给大家分享一个vue桌面端弹框组件,今天再分享最近开发的一个vue pc端自定义滚动条组件。
vscroll 一款基于vue2.x开发的网页端轻量级超小巧自定义美化滚动条组件。支持是否原生滚动条、鼠标移出是否自动隐藏、自定义滚动条尺寸及颜色等功能。
组件在设计开发之初借鉴了 el-scrollbar 及 vuebar 等组件设计思想。
通过简单的标签写法<v-scroll>...</v-scroll> 即可快速生成一个漂亮的替换原生滚动条。
参数配置
props: { // 是否显示原生滚动条 native: Boolean, // 是否自动隐藏滚动条 autohide: Boolean, // 滚动条尺寸 size: { type: [Number, String], default: '' }, // 滚动条颜色 color: String, // 滚动条层级 zIndex: null },
◆ 引入组件
在main.js中引入滚动条组件VScroll。
import VScroll from './components/vscroll'
Vue.use(VScroll)
◆ 快速使用
** 在使用前需要设置v-scroll外层div容器的宽度或高度。
<!-- 设置原生滚动条 --> <v-scroll native> <img src="/UploadFiles/2021-04-02/logo.png">◆ 实现过程
vscroll组件目录结构如下:
<!-- //VScroll 自定义滚动条模板 --> <template> <div class="vui__scrollbar" ref="ref__box" @mouseenter="handleMouseEnter" @mouseleave="handleMouseLeave" v-resize="handleResize"> <div :class="['vscroll__wrap', {native: native}]" ref="ref__wrap" @scroll="handleScroll"> <div class="vscroll__view" v-resize="handleResize"> <slot /> </div> </div> <!-- //滚动条 --> <div :class="['vscroll__bar vertical', {ishide: !isShow}]" @mousedown="handleClickTrack($event, 0)" :style="{'width': parseInt(size)>=0 "> <div class="vscroll__thumb" ref="ref__barY" :style="{'background': color, 'height': barHeight+'px'}" @mousedown="handleDragThumb($event, 0)"></div> </div> <div :class="['vscroll__bar horizontal', {ishide: !isShow}]" @mousedown="handleClickTrack($event, 1)" :style="{'height': parseInt(size)>=0 "> <div class="vscroll__thumb" ref="ref__barX" :style="{'background': color, 'width': barWidth+'px'}" @mousedown="handleDragThumb($event, 1)"></div> </div> </div> </template>在vue中如何通过指令directtive函数来监听元素/DOM尺寸变化?
非常简单,写一个轮询自定义指令就行。这里就直接监听滚动区DOM宽/高变化来动态更新滚动条状态。
// 监听元素/DOM尺寸变化 directives: { 'resize': { bind: function(el, binding) { let width = '', height = ''; function get() { const elStyle = el.currentStyle "htmlcode">/** * @Desc vue.js自定义滚动条直接VScroll * @Time andy by 2020-11-30 * @About Q:282310962 wx:xy190310 */ <script> import domUtils from './utils/dom' export default { props: { // 是否显示原生滚动条 native: Boolean, // 是否自动隐藏滚动条 autohide: Boolean, // 滚动条尺寸 size: { type: [Number, String], default: '' }, // 滚动条颜色 color: String, // 滚动条层级 zIndex: null }, data() { return { barWidth: 0, // 滚动条宽度 barHeight: 0, // 滚动条高度 ratioX: 1, // 滚动条水平偏移率 ratioY: 1, // 滚动条垂直偏移率 isTaped: false, // 鼠标光标是否按住滚动条 isHover: false, // 鼠标光标是否悬停在滚动区 isShow: !this.autohide, // 是否显示滚动条 } }, mounted() { this.$ref__box = this.$refs.ref__box this.$ref__wrap = this.$refs.ref__wrap this.$ref__barY = this.$refs.ref__barY this.$ref__barX = this.$refs.ref__barX this.$nextTick(this.updated) }, // ... methods: { // 鼠标移入 handleMouseEnter() { this.isHover = true this.isShow = true this.updated() }, // 鼠标移出 handleMouseLeave() { this.isHover = false this.isShow = false }, // 拖动滚动条 handleDragThumb(e, index) { let _this = this this.isTaped = true let c = {} // 阻止默认事件 domUtils.isIE() "text-align: center">上一篇:浅谈es6中的元编程<p> <span class="vs__btn" @click="handleScrollTo('top')">滚动至顶部</span> <span class="vs__btn" @click="handleScrollTo('bottom')">滚动至底部</span> <span class="vs__btn" @click="handleScrollTo(150)">滚动至150px</span> </p> <v-scroll ref="vscrollRef"> <img src="/UploadFiles/2021-04-02/logo.png">// 滚动到指定位置 handleScrollTo(val) { this.$refs.vscrollRef.scrollTo(val); },监听scroll滚动事件
<v-scroll @scroll="handleScroll"> <img src="/UploadFiles/2021-04-02/logo.png">// 监听滚动事件 handleScroll(e) { this.scrollTop = e.target.scrollTop // 判断滚动状态 if(e.target.scrollTop == 0) { this.scrollStatus = '到达顶部' } else if(e.target.scrollTop + e.target.offsetHeight >= e.target.scrollHeight) { this.scrollStatus = '到达底部' }else { this.scrollStatus = '滚动中....' } },OK,以上就是基于vue.js实现自定义滚动条组件。希望能对大家有些帮助!💪
下一篇:微信小程序轮播图swiper代码详解