Vue可左右滑动按钮组组件使用详解

 更新时间:2022年02月27日 13:00:56   作者:觅长生  
这篇文章主要为大家详细介绍了基于Vue可左右滑动按钮组组件,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了基于Vue可左右滑动按钮组组件,供大家参考,具体内容如下

左右两箭头控制按钮组左右移动,双击到最左或最右边,功能比较简单。如下所示

<template>
    <div class="demoButtons">
        <div class="buttonF">
            <el-row style="height:30px ">
                <el-col class="lableI"><i class="el-icon-arrow-left " @click="moveButtons('left')" @dblclick="moveSide('left')" /></el-col>
                <el-col ref="buttonBody" class="buttonBody">
                    <el-row id="buttonRow" ref="buttonRow">
                        <el-tag :style="{'width':buttonWidth+'px'}" v-for="(item, index) in buttonData" :key="index" :type="index == clickIndex ? '' : 'info'" @click="resetData(index, item)">
                            <el-tooltip v-if="item.name && item.name.length >  parseInt(buttonWidth/12) - 1" placement="top" :content="item.name" effect="light">
                                <span>{{  resetName(item.name) }}</span>
                            </el-tooltip>
                            <span v-else>{{ item.name }}</span>
                        </el-tag>
                    </el-row>
                </el-col>
                <el-col class="lableI"><i class="el-icon-arrow-right " @click="moveButtons('right')" @dblclick="moveSide('right')" /></el-col>
            </el-row>
        </div>
    </div>
</template>
<script>
import $ from 'jquery'
export default {
    props: {
        buttonData: {
            type: Array,
            default: () => {
                return []
            }
        },
        buttonWidth: {
            type: Number,
            default: 62
        }
    },
    data () {
        return {
            clickIndex: 0,
            currentSite: 0,
            showCount: 0,
            clickTimer: null,
        }
    },
    watch: {},
    created () {
        // this.setButtons()
    },
    mounted () {
        this.$nextTick(() => {
            this.showCount = parseInt(this.$refs.buttonBody.$el.clientWidth / this.buttonWidth) // 一行能展示几个按钮
        })
    },

    methods: {
        //设置名字
        resetName (val) {
            let i = parseInt(this.buttonWidth / 12) - 1;
            if (val && val.length > i) {
                return val.slice(0, i)
            } else {
                return val
            }
        },
        // 单击移一格
        moveButtons (val) {
            if (this.clickTimer) {
                window.clearTimeout(this.clickTimer)
                this.clickTimer = null
            }
            this.clickTimer = window.setTimeout(() => {
                this.$nextTick(() => {
                    if (val == 'left') {
                        if (this.currentSite < 0) {
                            this.currentSite = this.currentSite + this.buttonWidth
                        }
                    } else {
                        const totalCount = this.buttonData.length // 总共几个按钮
                        const showIndex = -parseInt(this.currentSite / this.buttonWidth) // 向左移了几个按钮
                        console.log(totalCount, 'totalLength', this.showCount, showIndex)
                        if (showIndex + this.showCount < totalCount) {
                            this.currentSite = this.currentSite - this.buttonWidth
                        }
                    }
                    $('#buttonRow').animate({ marginLeft: this.currentSite + 'px' })
                })
            }, 300)
        },
        // 双击到边
        moveSide (val) {
            if (this.clickTimer) {
                window.clearTimeout(this.clickTimer)
                this.clickTimer = null
            }
            this.$nextTick(() => {
                if (val == 'left') {
                    this.currentSite = 0
                } else {
                    const totalCount = this.buttonData.length // 总共几个按钮
                    if (totalCount > this.showCount) {
                        this.currentSite = -((totalCount - this.showCount) * this.buttonWidth)
                    }
                }
                $('#buttonRow').animate({ marginLeft: this.currentSite + 'px' })
            })
        },

        setButtons (data) {
            this.buttonData = data
        },
        resetData (index, data) {
            this.clickIndex = index
            this.$emit('resetData', data)
        }
    }
}
</script>
<style lang="scss" scoped>
.demoButtons {
    width: 100%;
    height: 100%;
}
.buttonF {
    width: 100%;
    margin: 0 auto;
    height: 30px;
    line-height: 30px;
}
.lableI {
    height: 30px;
    line-height: 30px;
    width: 20px;
    cursor: pointer;
}
.buttonBody {
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    width: calc(100% - 40px);
    white-space: nowrap;
}

.el-tag {
    text-align: center;
    padding: 0px 8px !important;
    height: 28px;
    line-height: 28px;
    cursor: pointer;
    border-radius: 0px !important;
    overflow: hidden;
    font-size: 12px;
}
</style>

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

相关文章

  • Vue实现自动检测以及版本的更新

    Vue实现自动检测以及版本的更新

    当用户在当前站点停留时间比较长,中途站点进行升级更新之后,用户如果不刷新页面就任然停留在旧的页面里,如何让用户收到一个提示,引导用户进行更新操作呢?下面给大家介绍如何站点更新如何在生产环境提示用户更新,进行页面刷新操作,核心原理其实很简单
    2023-03-03
  • 解决vue change阻止默认事件问题

    解决vue change阻止默认事件问题

    这篇文章主要介绍了vue change阻止默认事件问题,使用事件 @click.stop.native.prevent 解决 (使用@click.stop 或者 @click.prevent都无效,直接报错还阻止不了事件),需要的朋友可以参考下
    2022-01-01
  • Vue全局事件总线和订阅与发布使用案例分析讲解

    Vue全局事件总线和订阅与发布使用案例分析讲解

    在 vue 里我们可以通过全局事件总线来实现任意组件之间通信,它的原理是给 Vue 的原型对象上面添加一个属性。这样的话我所有组件的都可以访问到这个属性,然后可以通过这个属性来访问其他组件给这个属性上面绑定的一些方法,从而去传递数据
    2022-08-08
  • vue3使用particles插件实现粒子背景的方法详解

    vue3使用particles插件实现粒子背景的方法详解

    这篇文章主要为大家详细介绍了vue3使用particles插件实现粒子背景的方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助
    2022-03-03
  • Vue3按需引入Element Plus以及定制主题色教程

    Vue3按需引入Element Plus以及定制主题色教程

    由于涉及到vue框架单网页应用首屏加载慢这个问题,我们需尽量减少加载负担,故采用按需引入的方式,只引入项目中用到的组件,这篇文章主要给大家介绍了关于Vue3按需引入Element Plus以及定制主题色的相关资料,需要的朋友可以参考下
    2023-06-06
  • vue2组件之select2调用的示例代码

    vue2组件之select2调用的示例代码

    本篇文章主要介绍了vue2组件之select2调用的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-10-10
  • 基于vue-router的matched实现面包屑功能

    基于vue-router的matched实现面包屑功能

    本文主要介绍了基于vue-router的matched实现面包屑功能,文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-09-09
  • 浅谈axios中取消请求及阻止重复请求的方法

    浅谈axios中取消请求及阻止重复请求的方法

    在实际项目中,我们可能需要对请求进行“防抖”处理。本文主要实现axios中取消请求及阻止重复请求,具有一定的参考价值,感兴趣的可以了解一下
    2021-08-08
  • vue input输入框关键字筛选检索列表数据展示

    vue input输入框关键字筛选检索列表数据展示

    这篇文章主要为大家详细介绍了vue input输入框关键字筛选检索列表数据展示,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-05-05
  • vue3实现移动端滑动模块

    vue3实现移动端滑动模块

    这篇文章主要为大家详细介绍了vue3实现移动端滑动模块,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-09-09

最新评论