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>

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

(0)

相关推荐

  • vue+swiper实现左右滑动的测试题功能

    最近在做一个测试题,前后可以切换题目,点击按钮选择答案,选择答案的同时改变按钮的背景色,如下图所示: 初始代码 我用了vue和swiper.所有的题目是一个对象数组,通过v-for渲染: <swiper ref="mySwiper" :options="swiperOptions"> <swiper-slide v-for="(item, index) in listData" :key="index">

  • Vue实现tab导航栏并支持左右滑动功能

    本文主要介绍:利用Vue实现tab导航栏,并且通过flex布局实现左右滑动,计算按钮的位置,当点击第一屏展示的最后一个且还有元素未展示时,自动滑动显示出未显示的元素. tab导航栏布局: <section class="theme-list"> <div class="fixed-nav" ref="fixednav"> <div class="fixed-nav-content"> <

  • vue实现顶部左右滑动导航

    日常开发中经常用到导航这些东西,写篇文章记录下.该导航实现为点击末尾/起首位置,导航自动滑动出下一项的效果. 思路:判断当前点击项,相对与屏幕的位置,若点击的位置,满足可移动的限制,进行自动滑动处理. 实现如下: vue <template> <div class="debug-index-page"> <div class="tab-layout" id="scroller"> <ul v-for=&q

  • vue使用better-scroll实现滑动以及左右联动

    本文实例为大家分享了vue实现滑动以及左右联动效果的具体代码,供大家参考,具体内容如下 一.首先需要在项目中引入better-scroll 1. 在package.json 直接写入 "better-scroll":"^1.15.1"  版本以github上为准(目前最新) 2.cpnm install  在node_modules  可以查看版本是否安装 3.直接在你的组件里面写入import BScroll from 'better-scroll'; 二.bet

  • 基于Vue实现页面切换左右滑动效果

    基于Vue的页面切换左右滑动效果,具体内容如下 HTML文本页面: <template> <div id="app> <transition :name="direction" mode="out-in"> <!--动态获得transition 的name值--> <router-view class="app-view" wechat-title></router-vi

  • vue实现左右滑动效果实例代码

    前言 个人实际开发中用到的效果问题总结出来便于自己以后开发查看调用,如果也适用其他人请随意拿走勿喷就行! vue.js是现在流行的js框架之一,vue 是一套用于构建用户界面的渐进式javascript框架,与其它大型框架不同的是:vue被设计为可以自底向上逐层应用.vue的核心库只关注视图层,不仅易于上手,还便于与第三方库或既有项目整合,另外一个方面,当vue与现代化的工具链以及各种支持类库结合使用时,vue也完全能够为复杂的单页应用提供驱动. vue.js是用于构建交互式的Web界面的库,它

  • vue移动端实现手机左右滑动入场动画

    本文实例为大家分享了Android九宫格图片展示的具体代码,供大家参考,具体内容如下 app.vue <template> <div id="app"> <transition :name="transitionName"> <keep-alive > <router-view v-if="$route.meta.keepAlive" class="Router">&

  • Vue实现移动端左右滑动效果的方法

    1. 最近得到一个新需求,需要在Vue项目的移动端页面上加上左右滑动效果,在网上查阅资料,最终锁定了vue-touch 2. 下载vue-touch (https://github.com/vuejs/vue-touch/tree/next) 注意:如果Vue是2.x 的版本的话,一定要下next分支上的. 3. 使用: 3.1 npm install vue-touch@next --save 3.2 在main.js 中 引入: import VueTouch from 'vue-touch

  • vue移动端的左右滑动事件详解

    本文实例为大家分享了vue移动端左右滑动事件,供大家参考,具体内容如下 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script src="https://unpkg.com/vue"></script> <meta name="viewport" c

  • vue使用swiper实现左右滑动切换图片

    本文实例为大家分享了vue使用swiper实现左右滑动切换图片的具体代码,供大家参考,具体内容如下 使用npm 安装vue-awesome-swiper npm install vue-awesome-swiper --save 在main.js中引用 import VueAwesomeSwiper from 'vue-awesome-swiper' Vue.user(VueAwesomeSwiper) import 'swiper/dist/css/swiper.css' 在组件中使用 <te

随机推荐