click-scroll组件设计

栏目: JavaScript · 发布时间: 4年前

内容简介:有些业务需求,要求前端展示的内容多时可以通过scroll的形式拖拉查看,但是太多的滚动条又造成页面太乱,于是封装了这个click-scroll 组件。在组件上设定好展示的位置和空间大小,在组件内部放置实际要展示的内容,实际展示的内容宽度或长或短都由此组件来控制。组件内的内容宽度超过组件宽度时,组件两侧会自动出现『左右移动』交互。当内部展示的内容超过组件的可见区域时,可以在组件的可见区域单击拖动查看内容

一. 背景

有些业务需求,要求前端展示的内容多时可以通过scroll的形式拖拉查看,但是太多的滚动条又造成页面太乱,于是封装了这个click-scroll 组件。在组件上设定好展示的位置和空间大小,在组件内部放置实际要展示的内容,实际展示的内容宽度或长或短都由此组件来控制。

二. 功能

组件内的内容宽度超过组件宽度时,组件两侧会自动出现『左右移动』交互。

当内部展示的内容超过组件的可见区域时,可以在组件的可见区域单击拖动查看内容

三. 背景知识,元素大小的测量

1.偏移量(offset dimension):

元素在屏幕上占用的可见的所有空间,元素的可见大小由其高度、宽度决定,包括所有内边距、滚动条和边框大小。由四个值决定:offsetHeight、offsetWidth、offsetLeft和offsetRight。

  • offsetHeight:元素在垂直方向上占用的空间大小,以像素计。包括元素的高度、(可见)水平滚动条的高度、上边框高度和下边框高度。
  • offsetWidth:元素在水平方向上占用的空间大小,以像素计。包括元素的宽度、(可见)垂直滚动条的宽度、左边框宽度和右边框宽度。
  • offsetLeft:元素的左外边框至包含元素的左内边框之间的像素距离。 d.
  • offsetTop:元素的上外边框至包含元素的上内边框之间的像素距离。

click-scroll组件设计

2.客户区大小(client dimension)

元素内容及其内边距所占据空间的大小,滚动条占用的空间不计算在内。

  • clientWidth:元素内容区宽度加上左右内边距的宽度
  • clientHeight: 元素内容区高度加上上下内边距的高度

click-scroll组件设计

3.滚动大小(scroll dimension)

包含滚动内容的元素的大小。

  • scrollHeight:在没有滚动条的情况下,元素内容的实际总高度。
  • scrollWidth:在没有滚动条的情况下,元素内容的实际总宽度。
  • scrollLeft:被隐藏在内容区域左侧的像素数。通过设置这个属性可以改变元素的滚动位置。
  • scrollTop:被隐藏在内容区域上方的像素数。通过设置这个属性可以改变元素的滚动位置。

click-scroll组件设计

四. 组件设计思路

click-scroll组件设计

五. 使用文档

slot:

参数 说明 类型
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>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

自制搜索引擎

自制搜索引擎

[日]山田浩之、[日]末永匡 / 胡屹 / 人民邮电出版社 / 2016-1 / 39.00元

《自制搜索引擎》聚焦于Google和Yahoo!等Web搜索服务幕后的搜索引擎系统,首先讲解了搜索引擎的基础知识和原理,接着以现实中的开源搜索引擎Senna/Groonga为示例,使用该引擎的源代码引导读者亲自体验搜索引擎的开发过程。这部分讲解涉及了倒排索引的制作和压缩、检索的处理流程以及搜索引擎的优化等内容。又简单介绍了一些更加专业的搜索引擎的知识和要点,为读者今后进一步学习打下了基础。本书适合......一起来看看 《自制搜索引擎》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具