有些業務需求,要求前端展現的內容多時能夠經過scroll的形式拖拉查看,可是太多的滾動條又形成頁面太亂,因而封裝了這個click-scroll 組件。在組件上設定好展現的位置和空間大小,在組件內部放置實際要展現的內容,實際展現的內容寬度或長或短都由此組件來控制。html
組件內的內容寬度超過組件寬度時,組件兩側會自動出現『左右移動』交互。
當內部展現的內容超過組件的可見區域時,能夠在組件的可見區域單擊拖動查看內容前端
1.偏移量(offset dimension):
元素在屏幕上佔用的可見的全部空間,元素的可見大小由其高度、寬度決定,包括全部內邊距、滾動條和邊框大小。由四個值決定:offsetHeight、offsetWidth、offsetLeft和offsetRight。dom
2.客戶區大小(client dimension)
元素內容及其內邊距所佔據空間的大小,滾動條佔用的空間不計算在內。ui
3.滾動大小(scroll dimension)
包含滾動內容的元素的大小。this
slot:spa
參數 | 說明 | 類型 |
---|---|---|
content | 組件實際要展現的內容 | dom |
<click-scroll> <template slot="content"> <div> 我是實際要展現的內容啊啊啊啊啊…… </div> </template> </click-scroll>
<template> <div class="hui-hui" :id="domId.compID"> <!--向左滑動--> <div class="hui-drag-left" :class="{'hui-drag-action': drag.isLeft}" v-if="drag.isShow" @click="onClickLeft"> </div> <!--展現的內容--> <div :id="domId.containerID" class="hui-container" v-show="hasContent" ref='container' @mousedown="onMouseDown"> <slot name="content"></slot> </div> <div v-show="!hasContent" class="hui-no-data">暫無數據</div> <!--向右滑動--> <div class="hui-drag-right" :class="{'hui-drag-action': drag.isRight}" v-if="drag.isShow" @click="onClickRight"> </div> </div> </template> <script> import store from '@/store' export default { name: 'cards-container', data () { return { hasContent: false, domId: { compID: `hui-comp-${+new Date()}`, containerID: `hui-container-${+new Date()}` }, drag: { isShow: false, isLeft: false, isRight: false } } }, methods: { judgeHasContent () { this.hasContent = this.$slots.hasOwnProperty('content') }, judgeDragIsShow () { const compWidth = this.getCompWidth() const contextMaxWidth = this.getContextMaxWidth() if (compWidth >= contextMaxWidth) { this.drag.isShow = false } else { this.drag.isShow = true } return this.drag.isShow }, judgeIsLeft () { const containerDom = this.getContainerDom() const contentWidth = this.getContextMaxWidth() if (!containerDom && !contentWidth) this.drag.isLeft = false if (containerDom.offsetWidth + containerDom.scrollLeft >= contentWidth) { this.drag.isLeft = false } else { this.drag.isLeft = true } }, judgeIsRight () { const containerDom = this.getContainerDom() if (!containerDom) this.drag.isRight = false if (containerDom.scrollLeft === 0) { this.drag.isRight = false } else { this.drag.isRight = true } }, getCompDom () { return document.getElementById(this.domId.compID) || null }, getCompWidth () { const compDom = this.getCompDom() if (!compDom) { return 0 } else { return compDom.offsetWidth } }, getContainerDom () { return document.getElementById(this.domId.containerID) || null }, getContextMaxWidth () { if (!this.$refs.hasOwnProperty('container')) { return 0 } else { const widthArr = [] for(let e of this.$refs['container'].childNodes) { widthArr.push(e.offsetWidth) } return Math.max(...widthArr) } }, onMouseDown (e) { // 手動滑動 const containerDom = this.getContainerDom() if (!containerDom) return let scrollLeft = containerDom.scrollLeft const containerLeft = containerDom.offsetLeft let ev = e || window.event let offsetLeft = ev.clientX - containerLeft document.onmousemove = (e) => { let ev = e || window.event let nowOffsetLeft = ev.clientX - containerLeft containerDom.scrollLeft = scrollLeft + (offsetLeft - nowOffsetLeft) this.judgeIsLeft() this.judgeIsRight() } document.onmouseup = () => { document.onmousemove = null document.onmouseup = null } }, onClickLeft () { // 向左滑動 if (!this.hasContent && !this.drag.isLeft) return const containerDom = this.getContainerDom() if (!containerDom) return const scrollWidth = containerDom.offsetWidth containerDom.scrollLeft += scrollWidth this.judgeIsLeft() this.judgeIsRight() }, onClickRight () { // 向右滑動 if (!this.hasContent && !this.drag.isRight) return const containerDom = this.getContainerDom() if (!containerDom) return const scrollWidth = containerDom.offsetWidth containerDom.scrollLeft -= scrollWidth this.judgeIsLeft() this.judgeIsRight() } }, updated () { this.$nextTick(() => { this.judgeHasContent() const isShow = this.judgeDragIsShow() if (isShow) { this.judgeIsLeft() this.judgeIsRight() } }) }, mounted () { this.judgeHasContent() const isShow = this.judgeDragIsShow() if (isShow) { this.judgeIsLeft() this.judgeIsRight() } } } </script>