vue-滚动条

功能简介

功能比较简陋,仅实现了主要功能,水平滚动条,垂直滚动条,容器高宽改变时动态更改滚动条的大小,自定义颜色,方位等功能可通过添加配置参数实现

一、需要安装 “element-resize-detector”

npm install element-resize-detector

用于监听div宽高变化

二、创建工具类 util.js ,方便事件的绑定以及移除

/**
 * 绑定事件
 *
 * @export
 * @param {any} dom
 * @param {any} eventType
 * @param {any} callback
 */
export function on (dom, eventType, callback) {
    if (document.addEventListener) {
      dom.addEventListener(eventType, callback)
    } else {
      dom.attachEvent('on' + eventType, callback)
    }
  }
  
  /**
  * 解绑事件
  *
  * @export
  * @param {any} dom
  * @param {any} eventType
  * @param {any} callback
  */
  export function off (dom, eventType, callback) {
    if (document.removeEventListener) {
      dom.removeEventListener(eventType, callback)
    } else {
      dom.detachEvent('on' + eventType, callback)
    }
  }

三、创建容器 scroll.vue

<template>
    <div class="scroll" ref="scroll">
        <div class="scroll-container" ref="container">
            <div
                    class="scroll-content"
                    ref="content"
                    :style="{'width':'calc(100% + '+this.vSize+'px','height':'calc(100% + '+this.hSize+'px'}"
                    @scroll.stop="onScroll"
            >
                <slot></slot>
            </div>
        </div>
        <!--垂直滚动条-->
        <scroll-slider
                v-if="!hideV"
                :scrollTop="scrollTop"
                ref="sliderV"
                @change="silderVChange"
        ></scroll-slider>
        <!--水平滚动条-->
        <scroll-slider
                v-if="!hideH"
                sliderType="h"
                :scrollLeft="scrollLeft"
                ref="sliderH"
                @change="silderHChange"
        ></scroll-slider>
    </div>
</template>
<script>
    import slider from "./slider.vue";
    import ElementResizeDetectorMaker from "element-resize-detector";

    export default {
        name: "scroll",
        props: {
            //隐藏垂直滚动条
            hideV: {
                type: Boolean,
                default: false
            },
            //隐藏水平滚动条
            hideH: {
                type: Boolean,
                default: false
            },
            resize: Boolean
        },
        components: {
            "scroll-slider": slider
        },
        data() {
            return {
                //垂直滚动条宽度
                vSize: 17,
                //水平滚动条高度
                hSize: 17,
                scrollTop: 0,
                scrollLeft: 0,
            };
        },
        mounted() {
            this.computeSliderV();
            this.computeSliderH();
            // 监听slot视图变化, 方法内部会判断是否设置了开启监听resize
            this.resizeListener()
        },
        methods: {
            onScroll(event) {
                this.scrollTop = this.$refs["content"].scrollTop;
                this.scrollLeft = this.$refs["content"].scrollLeft;
            },
            silderVChange(newval) {
                this.$refs["content"].scrollTop = newval;
            },
            silderHChange(newval) {
                this.$refs["content"].scrollLeft = newval;
            },
            //计算垂直滚动条的长度
            computeSliderV() {
                if (this.hideV) {
                    return;
                }
                let clientEle = this.$refs["scroll"];
                let slotEle = this.$slots.default[0]["elm"];
                this.$refs.sliderV.computeSlider(slotEle,clientEle);
            },
            computeSliderH() {
                if (this.hideH) {
                    return;
                }
                let clientEle = this.$refs["scroll"];
                let slotEle = this.$slots.default[0]["elm"];
                this.$refs.sliderH.computeSlider(slotEle,clientEle);
            },

            // slot视图大小变化时的监听
            resizeListener() {
                // 没开启监听reszie方法
                if (!this.resize) return

                // 监听slot视图元素resize
                let elementResizeDetector = ElementResizeDetectorMaker({strategy: 'scroll',callOnAdd: false})

                // 记录视图上次宽高的变化
                const ele = this.$refs.scroll;
                elementResizeDetector.listenTo(ele, (element) => {
                    // 初始化百分比
                    this.computeSliderV();
                    this.computeSliderH();
                    this.scrollTop = this.$refs["content"].scrollTop;
                    this.scrollLeft = this.$refs["content"].scrollLeft;
                })
            },
        }
    };
</script>
<style>
    .scroll {
        position: relative;
        width: 100px;
        height: 100px;
        overflow: hidden;
    }

    .scroll-container {
        width: 100%;
        height: 100%;
    }

    .scroll-content {
        width: calc(100% + 17px);
        height: calc(100% + 17px);
        overflow: scroll;
    }

    .sliderContainer {
        position: absolute;
        border-radius: 5px;
    }

    .scroll-v {
        top: 0;
        bottom: 0;
        right: auto;
        width: 8px;
        height: 100%;
    }

    .scroll-h {
        left: 0;
        bottom: auto;
        right: 0;
        height: 8px;
        width: 100%;
    }

    .scroll-slider {
        position: absolute;
        background-color: #000000;
        opacity: 0.3;
        border-radius: 5px;
        cursor: pointer;
        transition: opacity .3s;;
    }

    .scroll-slider:hover {
        opacity: 0.5;
    }

    .scroll-v .scroll-slider {
        top: 0;
        right: 0;
        left: auto;
        bottom: auto;
    }

    .scroll-h .scroll-slider {
        top: auto;
        right: auto;
        left: 0;
        bottom: 0;
    }
</style>

四、创建滑块 slider.vue

<template>
    <div
            :style="[isShow]"
            class="sliderContainer"
            :class="sliderType=='h'?'scroll-h':'scroll-v'"
            ref="sliderContainer"
            @wheel.capture.stop="handlewheel"
    >
        <div
                class="scroll-slider"
                :style="[initSize,initLength,loc]"
                @mousedown.stop="sliderMousedown"
        ></div>
    </div>
</template>
<script>
    import {on, off} from "./util";

    export default {
        props: {
            //滚动条类型:h:水平滚动条,v:垂直滚动条
            sliderType: {
                type: String,
                default: "v"
            },
            //滚动条最小长度
            minLength: {
                type: Number,
                default: 20
            },
            size: {
                type: Number,
                default: 8
            },
            scrollTop: {
                type: Number,
                default: 0
            },
            scrollLeft: {
                type: Number,
                default: 0
            },
            color: {
                type: String,
                default: "#000000"
            },
            opacity: {
                type: Number,
                default: 0.3
            }
        },
        created() {
            //水平滚动条配置
            let h = {
                clientSize: "clientWidth",
                loc: "top",
                scrollSize: "scrollWidth",
                locsSize: "scrollHeight",
                loccSize: "clientHeight"
            };
            let v = {
                clientSize: "clientHeight",
                loc: "left",
                scrollSize: "scrollHeight",
                locsSize: "scrollWidth",
                loccSize: "clientWidth"
            };
            this.config = this.sliderType === "h" ? h : v;
        },
        data() {
            return {
                isBind: false,//标识是否已经绑定拖动事件,避免重复绑定
                percentage: 0,
                length: 0,
                startMove: false,
                offset: 0,
                position: {},
                config: {},
                isShowSilider: true,
                locValue: 0
            };
        },
        computed: {
            initSize() {
                return {
                    [this.sliderType === "h" ? "height" : "width"]: this.size + "px"
                };
            },
            //初始长度
            initLength() {
                return {
                    [this.sliderType === "h" ? "width" : "height"]: this.length + "px"
                };
            },
            //初始位置
            loc() {
                return {
                    [this.sliderType === "h" ? "left" : "top"]: this.offset + "px"
                };
            },
            //是否显示,隐藏即放到视野外
            isShow() {
                return {
                    [this.config.loc]: this.isShowSilider ? (this.locValue - this.size) + 'px' : '-' + this.siz + 'px'
                }
            }
        },
        methods: {
            sliderMousedown(event) {
                // 只有鼠标左键可以拖动
                if (event.button !== 0) {
                    return;
                }
                event.preventDefault();
                event.stopPropagation();
                event.stopImmediatePropagation();

                this.startMove = true;
                this.position.x = event.clientX;
                this.position.y = event.clientY;
                this.bindEvent();
            },
            bindEvent() {
                if (this.isBind) {
                    return;
                }
                on(document, "mouseup", this.mouseup);
                on(document, "mousemove", this.mousemove);
                this.isBind = true;
                this.startMove = true;
            },
            mouseup() {
                this.startMove = false;
                this.isBind = false;
                off(document, "mouseup", this.mouseup);
                off(document, "mousemove", this.mousemove);
            },
            mousemove(event) {
                if (!this.startMove) return;
                let x = event.clientX;
                let y = event.clientY;
                let moveX = x - this.position.x;
                let moveY = y - this.position.y;
                this.position.x = x;
                this.position.y = y;
                let move = this.sliderType === "h" ? moveX : moveY;
                this.computePosition(move);
            },
            computePosition(move) {
                let newloc = this.offset + move;
                if (newloc > this.maxOffset) {
                    newloc = this.maxOffset;
                }
                if (newloc < 0) newloc = 0;
                this.offset = newloc;
                this.$emit("change", newloc / this.percentage);
            },
            //计算滑块的一些属性
            computeSlider(scroll, client) {
                //内容真实长度或宽度
                let scrollSize = scroll[this.config.scrollSize];
                //容器的长度或宽度
                let clientSize = client[this.config.clientSize];
                let containerSize = this.$refs.sliderContainer[this.config.clientSize];
                this.length = containerSize * (clientSize / scrollSize);
                if (this.length < this.minLength) {
                    this.length = this.minLength;
                }
                if (clientSize >= scrollSize) {
                    this.length = 0;
                }
                //最大偏移距离
                this.maxOffset = containerSize - this.length;
                if(scrollSize - clientSize==0){
                    this.percentage=0;
                }else{
                    this.percentage = this.maxOffset / (scrollSize - clientSize);
                }
                this.isShowSilider = this.percentage > 0 && this.percentage < 1;
                let locsSize = scroll[this.config.locsSize];
                let loccSize = client[this.config.loccSize];
                //防止内容宽度比容器小的时候垂直滚动条和内容有距离
                this.locValue = locsSize < loccSize ? locsSize : loccSize;
            },
            handlewheel(event) {
                console.log(event);
            }
        },
        watch: {
            scrollTop() {
                this.offset = this.scrollTop * this.percentage;
            },
            scrollLeft() {
                this.offset = this.scrollLeft * this.percentage;
            }
        },
        destroyed() {
            off(document, "mouseup", this.mouseup);
            off(document, "mousemove", this.mousemove);
        }
    };
</script>

五、demo

<template>
    <div>
        <scroll :style="{width:width+'px',height:height+'px'}" resize>
            <div style="width: 100%;height: 100%;">
                <div>水龙吟·次韵章质夫杨花词</div>
                <div>似花还似非花,也无人惜从教坠。</div>
                <div>抛家傍路,思量却是,无情有思。</div>
                <div>萦损柔肠,困酣娇眼,欲开还闭。</div>
                <div>梦随风万里,寻郎去处,又还被、莺呼起。</div>
                <div>不恨此花飞尽,恨西园、落红难缀。晓来雨过,遗踪何在?</div>
                <div>一池萍碎。</div>
                <div>春色三分,二分尘土,一分流水。细看来,不是杨花,点点是离人泪。</div>
            </div>
        </scroll>
        <div>
            <span>scroll宽度:</span><input type="text" v-model="width"/>
            <span>scroll高度:</span><input type="text" v-model="height"/>
        </div>
    </div>
</template>
<script>
    import scroll from "./component/scroll.vue";

    export default {
        components: {
            scroll
        },
        data() {
            return {
                width: 300,
                height: 200
            }
        }
    };
</script>
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,142评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,298评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,068评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,081评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,099评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,071评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,990评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,832评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,274评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,488评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,649评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,378评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,979评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,625评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,643评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,545评论 2 352

推荐阅读更多精彩内容

  • methods: { scrollToBottom() { this.$nextTick(() => ...
    酸菜小白阅读 3,894评论 0 0
  • 基于Vue的一些资料 内容 UI组件 开发框架 实用库 服务端 辅助工具 应用实例 Demo示例 element★...
    尝了又尝阅读 1,149评论 0 1
  • 简说Vue (组件库) https://github.com/ElemeFE/element" 饿了么出品的VUE...
    Estrus丶阅读 1,628评论 0 1
  • UI组件 element- 饿了么出品的Vue2的web UI工具套件 Vux- 基于Vue和WeUI的组件库 m...
    你猜_3214阅读 11,057评论 0 118
  • UI组件 element- 饿了么出品的Vue2的web UI工具套件 Vux- 基于Vue和WeUI的组件库 m...
    王喂马_阅读 6,453评论 1 77