vue的滚动条插件实现代码
网络编程 2021-07-04 15:01www.168986.cn编程入门
这篇文章主要介绍了vue的滚动条插件实现代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
这篇文章主要介绍了vue的滚动条插件实现代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
效果如下
代码如下
<template> <div class="vue-scroll" ref="vueScrollW"> <div class="vue-scroll-w" ref="vueScroll" > <div class="vue-scroll-c" :style="{width:cWidth}"> <slot></slot> </div> </div> <div class="vue-scrollbar" v-if="rate < 1"> <div class="vue-scrollbar-thumb" :style="{height:thumbH,:thumbTop}" @mousedown="onmousedown" @mouseup="onmouseup" ></div> </div> </div> </template> <script> export default { name:"vue-scroll", data(){ return { thumb:0, :0, rate:2, moveTop:null, isDrag:false, cw:10, observer:null } }, puted:{ thumbH(){ return this.thumb + "px"; }, thumbTop(){ return this. + "px"; }, cWidth(){ return this.cw + "%"; } }, updated(){ if(!window.MutationObserver){ this.refresh(); } }, mounted(){ var me = this; me.$refs.vueScroll.addEventListener("scroll",me.onscroll.bind(me)); window.addEventListener("mouseup",me.onmouseup.bind(me)); window.addEventListener("mousemove",me.onmousemove.bind(me)); if(window.MutationObserver){ //MutationObserver 最低只兼容 ie11 me.observer = new window.MutationObserver(me.mutationCallback.bind(me)); me.observer.observe(me.$refs.vueScroll, { attributes: true, childList: true, subtree: true }); } me.refresh(); }, methods:{ mutationCallback(mutationsList){ this.refresh(); }, onscroll(){ this. = this.$refs.vueScroll.scrollTop this.rate; //计算滚动条所在的高度 if(this.rate < 1){ this.eventTrigger(this.); } }, refresh(){ var me = this; var vueScroll = me.$refs.vueScroll; var rate = vueScroll.clientHeight / vueScroll.scrollHeight; //滚动条高度的比例,也是滚动条位置的比例 me.rate = rate; if(rate < 1){ //需要出现滚动条,并计算滚动条的高度 me.thumb = rate vueScroll.clientHeight; //滚动条的 bar 的高度 //计算出原生的滚动条的宽度 var w = me.$refs.vueScrollW.clientWidth; //根据比例,转换为内容的百分比 me.cw = w/vueScroll.clientWidth 100; }else{ //不需要出现滚动条 me.thumb = 0; me.cw = 10; } }, onmousedown(){ this.isDrag = true; this.moveTop = null; }, onmouseup(){ this.isDrag = false; }, onmousemove(e){ if(this.isDrag){ if(this.moveTop !== null){ var speed = e.screenY - this.moveTop; var = this. + speed; this.scrollThumb(); } this.moveTop = e.screenY; e.preventDefault(); } }, scrollThumb(){ if( < 0 ){ = 0; } if( > this.$refs.vueScroll.clientHeight-this.thumb){ = this.$refs.vueScroll.clientHeight-this.thumb; } this.$refs.vueScroll.scrollTop = /this.rate; this. = ; }, eventTrigger(){ if( === 0){ this.$emit("reachTop"); //到达顶部 } if( === this.$refs.vueScroll.clientHeight-this.thumb){ this.$emit("reachBottom"); //到达底部与 } this.$emit("vuescroll",this.$refs.vueScroll.scrollTop,this.);//返回内容滚动的高度 和 滚动条所在的高度 }, scrollTo(scrollTop){ //对外的api,滚动的内容的哪里 this.$refs.vueScroll.scrollTop = scrollTop; this.$nextTick(()=>{ this.onscroll(); }) } }, destroyed(){ var me = this; me.$refs.vueScroll && me.$refs.vueScroll.removeEventListener("scroll",me.onscroll.bind(me)); window.removeEventListener("mouseup",me.onmouseup.bind(me)); window.removeEventListener("mousemove",me.onmousemove.bind(me)); me.observer&&me.observer.disconnect(); } } </script> <style lang="scss" scoped> .vue-scroll{ height: 100%; width: 100%; overflow: hidden; position: relative; .vue-scroll-w{ width: 1000%; height: 100%; overflow: auto; .vue-scroll-c{ position: relative; width: 10%; } } .vue-scrollbar{ position: absolute; z-index: 1; right: 0; : 0; width: 4px; height: 100%; background: #EEEEEE; opacity: 0.6; .vue-scrollbar-thumb{ position: absolute; : 0; right: 0; width: 4px; border-radius: 4px; background: #D3D3D3; &:hover{ background: #bbb; } &:active{ background: #aaa; } } } } </style>
使用
<template> <div class="scroll"> <vueScroll> <ul> <li v-for="item in 60" :key="item">{{item}}</li> </ul> </vueScroll> </div> </template> <script> import vueScroll from "@/ponents/vue-scroll.vue" export default { data(){ return { count:60 } }, ponents:{ vueScroll }, mounted(){ } } </script> <style lang="less" scoped> .scroll{ width: 400px; height: 600px; margin: 0 auto; border: 1px solid red; ul{ li{ line-height: 30px; border-bottom: 1px solid #ddd; } } } </style>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程