vue3 scroll 插件 滾動條樣式 優(yōu)化

安裝已封裝好的

npm install vuescrollnext --save

main.js/main.ts

import scroll from 'vuescrollnext'
app.use(scroll)

地址 https://www.npmjs.com/package/vuescrollnext

使用

<el-table
                        v-scrollbar="{
                            container: '.logBody>.el-table__body-wrapper',
                            'ps-y-reach-end': testEvent,
                             psScrollX: testEvent,
                        }"
                        ref="logTableREF"
                        :data="tableData"
                        :stripe="false"
                        class="logBody"
                        :border="false"
                        tooltip-effect="light"
                        style="width: 100%"
                        height="450px"
                        @selection-change="handleSelectionChange"
                    > </el-table>

或者自己封裝 如下步驟....

1.安裝


npm install perfect-scrollbar --save

2.使用

 <el-table
                        v-xxx="{
                            container: '.logBody>.el-table__body-wrapper',
                            'ps-y-reach-end': testEvent,
                             psScrollX: testEvent,
                        }"
                        ref="logTableREF"
                        :data="tableData"
                        :stripe="false"
                        class="logBody"
                        :border="false"
                        tooltip-effect="light"
                        style="width: 100%"
                        height="450px"
                        @selection-change="handleSelectionChange"
                    > </el-table>
// setup 
const testEvent = ()=>{}
return {
testEvent
}

不需要參數(shù)的情況,走默認(rèn)配置
或者

<div v-xxx></div>

又或者

<div v-xxxx=".logBody>.el-table__body-wrapper"></div>

3. css 樣式文件根據(jù)自己情況 從node_module 拷貝出來修改覆蓋 或者使用他原來默認(rèn)的

4. 插件內(nèi)容


import { toCamelCaseSheet, toCamelCaseStyle } from "@/utils";
import { App, Directive } from "@vue/runtime-core"
import PerfectScrollbar from 'perfect-scrollbar';
import '../assets/css/scroll.css'
/**
 * @interface container  容器id 可以是 '.logBody>.el-table__body-wrapper'
 * @interface  suppressScrollX  默認(rèn)false ,是否禁用X軸滾動條
 * @interface  suppressScrollY  默認(rèn)false ,是否禁用Y軸滾動條
 * @interface  timeout  cure dom async render 修復(fù)dom異步呈現(xiàn) (自定義配置項)
 * @interface  scrollXMarginOffset  在不啟用X軸滾動條的情況下檩咱,內(nèi)容寬度可以超過容器寬度的像素數(shù)码耐。允許一些“擺動空間”或“偏移中斷”堡纬,這樣X軸滾動條就不會因為幾個像素而啟用
 * @interface  scrollYMarginOffset   在不啟用Y軸滾動條的情況下舷丹,內(nèi)容寬度可以超過容器寬度的像素數(shù)粱年。允許一些“擺動空間”或“偏移中斷”慰丛,這樣X軸滾動條就不會因為幾個像素而啟用
 * @interface handlers 默認(rèn)  ['click-rail', 'drag-thumb', 'keyboard', 'wheel', 'touch'], 用于滾動元素的處理程序列表
 * @interface wheelSpeed 默認(rèn)1 應(yīng)用于鼠標(biāo)滾輪事件的滾動速度
 * @interface wheelPropagation 默認(rèn)false  如果此選項為true颤绕,則當(dāng)滾動到達(dá)邊的末尾時纺裁,鼠標(biāo)滾輪事件將傳播到父元素
 * @interface swipeEasing  默認(rèn)false  如果此選項為真,則輕掃滾動
 * @interface minScrollbarLength  默認(rèn) null  當(dāng)設(shè)置為整數(shù)值時菩貌,滾動條的拇指部分不會縮小到該像素數(shù)以下
 * @interface maxScrollbarLength  默認(rèn) null  當(dāng)設(shè)置為整數(shù)值時卢佣,滾動條的拇指部分不會擴(kuò)展到該像素數(shù)
 * @interface scrollingThreshold 默認(rèn) 1000  這將ps-scrolling-x和ps-scrolling-y類的閾值設(shè)置為保持不變。在默認(rèn)的CSS中箭阶,無論懸停狀態(tài)如何虚茶,它們都會顯示滾動條。單位是毫秒
 * @interface useBothWheelAxes default false 
 * 
 */

interface scrollBarOptions {
    container?: string
    suppressScrollX?: boolean
    suppressScrollY?: boolean
    scrollXMarginOffset?: number
    scrollYMarginOffset?: number
    handlers?: string[]
    timeout?: number
    wheelSpeed?: number,
    wheelPropagation?: boolean
    swipeEasing?: boolean
    minScrollbarLength?: number
    maxScrollbarLength?: number
    scrollingThreshold?: number
    useBothWheelAxes?: boolean
    testEvent?: Function
}
/**
 * 參數(shù)可以寫成 駝峰格式 當(dāng)前已經(jīng)做好了 兼容
 * @param el  
 * @event ps-scroll-y
 * This event fires when the y-axis is scrolled in either direction.
 * @event ps-scroll-x
 * This event fires when the x-axis is scrolled in either direction.
 * @event ps-scroll-up
 * This event fires when scrolling upwards.
 * @event ps-scroll-down
 * This event fires when scrolling downwards.
 * @event ps-scroll-left
 * This event fires when scrolling to the left.
 * @event ps-scroll-right
 * This event fires when scrolling to the right.
 * @event ps-y-reach-start
 * This event fires when scrolling reaches the start of the y-axis.
 * @event ps-y-reach-end
 * This event fires when scrolling reaches the end of the y-axis (useful for infinite scroll).
 * @event ps-x-reach-start
 * This event fires when scrolling reaches the start of the x-axis.
 * @event ps-x-reach-end
 * This event fires when scrolling reaches the end of the x-axis.
 * You can also watch the reach state via the reach property.
 * 更多詳情 [https://github.com/mdbootstrap/perfect-scrollbar]
 */


/**
 * @param el 容器
 * @param options 配置項 
 */
const el_scrollBar = (el: any, options?: scrollBarOptions | any) => {
    if (el._ps_ instanceof PerfectScrollbar) {
        el._ps_.update();
    } else {
        const ps = new PerfectScrollbar(el, options || {});
        for (let handler in options) {
            if (typeof options[handler] === 'function') {
                el.addEventListener(toCamelCaseStyle(handler), options[handler])
            }
        }
        el._ps_ = ps
    }
};
/**
 * @param rules 容器 規(guī)則
 */
// 自定義指令
const Direcive: Directive = {
    mounted: function (el, binding) {
        if (typeof binding.value == "object") {
            let dom
            console.log(binding.value)
            setTimeout(() => {
                dom = el.querySelector(binding.value.container) || el;
                if (!dom) {
                    return console.warn(`未找到可供綁定的dom${binding.value}`);
                }
                const rules = ["fixed", "absolute", "relative"];
                if (!rules.includes(window.getComputedStyle(dom, null).position)) {
                    console.error(`perfect-scrollbar所在的容器的position屬性必須是以下之一:${rules.join("仇参、")}`)
                }
                el_scrollBar(dom, binding.value);
            }, binding.value.timeout || 0)
        } else {
            let dom
            dom = el.querySelector(binding.value) || el;
            el_scrollBar(dom);
        }
    },
    beforeMount: function (el, binding) { },
    updated: function (el, binding, vnode) {
        if (!el) {
            return console.warn(`未找到可供綁定的dom,${binding.value}`);
        }
        if (typeof binding.value == "object") {
            el = el.querySelector(binding.value.container) || el;
            el_scrollBar(el, binding.value);
        } else {
            el = el.querySelector(binding.value) || el;
            el_scrollBar(el)
        }
    }
}

// 名稱自己定義
export default {
    install(app: App) {
        app.directive('xxxx', Direcive)
    }
}

駝峰轉(zhuǎn)換


/**
 * 
 * @param str aBot => a-bot
 * @returns 
 */
export const toCamelCaseStyle = (str: string) => {
  return str.replace(/([A-Z])/g, "-$1").toLowerCase();
};
/**
 * 
 * @param str x-yaa-zxx =>xYaaZxx
 * @returns 
 */
export const toCamelCaseSheet = (str: string) => {
  return str.replace(/\-(\w)/g, (all, letter) => letter.toUpperCase());
};

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末嘹叫,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子诈乒,更是在濱河造成了極大的恐慌罩扇,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,383評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件怕磨,死亡現(xiàn)場離奇詭異喂饥,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)肠鲫,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,522評論 3 385
  • 文/潘曉璐 我一進(jìn)店門员帮,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人导饲,你說我怎么就攤上這事捞高。” “怎么了渣锦?”我有些...
    開封第一講書人閱讀 157,852評論 0 348
  • 文/不壞的土叔 我叫張陵硝岗,是天一觀的道長。 經(jīng)常有香客問我袋毙,道長辈讶,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,621評論 1 284
  • 正文 為了忘掉前任娄猫,我火速辦了婚禮贱除,結(jié)果婚禮上生闲,老公的妹妹穿的比我還像新娘。我一直安慰自己月幌,他們只是感情好碍讯,可當(dāng)我...
    茶點故事閱讀 65,741評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著扯躺,像睡著了一般捉兴。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上录语,一...
    開封第一講書人閱讀 49,929評論 1 290
  • 那天倍啥,我揣著相機(jī)與錄音,去河邊找鬼澎埠。 笑死虽缕,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的蒲稳。 我是一名探鬼主播氮趋,決...
    沈念sama閱讀 39,076評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼江耀!你這毒婦竟也來了剩胁?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,803評論 0 268
  • 序言:老撾萬榮一對情侶失蹤祥国,失蹤者是張志新(化名)和其女友劉穎昵观,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體舌稀,經(jīng)...
    沈念sama閱讀 44,265評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡啊犬,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,582評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了扩借。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片椒惨。...
    茶點故事閱讀 38,716評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡缤至,死狀恐怖潮罪,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情领斥,我是刑警寧澤嫉到,帶...
    沈念sama閱讀 34,395評論 4 333
  • 正文 年R本政府宣布,位于F島的核電站月洛,受9級特大地震影響何恶,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜嚼黔,卻給世界環(huán)境...
    茶點故事閱讀 40,039評論 3 316
  • 文/蒙蒙 一细层、第九天 我趴在偏房一處隱蔽的房頂上張望惜辑。 院中可真熱鬧,春花似錦疫赎、人聲如沸盛撑。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,798評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽抵卫。三九已至,卻和暖如春胎撇,著一層夾襖步出監(jiān)牢的瞬間介粘,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,027評論 1 266
  • 我被黑心中介騙來泰國打工晚树, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留姻采,地道東北人。 一個月前我還...
    沈念sama閱讀 46,488評論 2 361
  • 正文 我出身青樓题涨,卻偏偏與公主長得像偎谁,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子纲堵,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,612評論 2 350

推薦閱讀更多精彩內(nèi)容