vue如何在tab标签页循环加定时器(vue实现tab标签标签超出自动滚动)
vue如何在tab标签页循环加定时器
vue实现tab标签标签超出自动滚动当创建的tab标签超出页面可视区域时自动滚动一个tab标签距离,并可手动点击滚动tab标签,实现效果请.jpg" alt="vue如何在tab标签页循环加定时器(vue实现tab标签标签超出自动滚动)" border="0" />
效果预.jpg" alt="vue如何在tab标签页循环加定时器(vue实现tab标签标签超出自动滚动)" border="0" />
<template>
<li class="main-box">
<button @click="add">添加</button>
<li class="main-box-tab">
<i @click="previous"><<</i>
<i @click="next">>></i>
<li class="main-box-tab-content" ref="tabs">
<li class="main-box-tab-roll">
<li v-for="(item,index) in tabs" :key="index"
:class="{'tab-item-action':actionName === item.name ,'tab-item':actionName !== item.name}"
@click.stop="clickTab(item.name,index)">
<span>{{item.meta.title}}</span>
<i class="el-icon-close" @click.stop="close(item.name)"></i>
</li>
</li>
</li>
</li>
<li class="main-box-content">
<li>{{actionName}}</li>
</li>
</li>
</template>
<script>
export default {
name: "index",
data() {
return {
tabs: [],
moveX: 0,
count: 1,
unoccupied: 0,
tabsCount: 0,
actionName: 'test1'
}
},
watch: {
actionName(val) {
let len = this.tabs.length
// 如有重复数据退出后续函数执行
for (let i = 0; i < len; i++) {
if (this.tabs[i].name === val) {
this.$nextTick(() => {
this.translateX((i + 1 - this.tabsCount) * this.width - this.unoccupied)
})
return
}
}
this.tabs.push({
name: `test${this.count}`,
meta: {
title: `test${this.count}`
}
})
this.$nextTick(() => {
// (总共有多少个tabs - 未偏移时可见的元素个数) * 单个tab标签元素长度 - 被遮挡tab元素的可见部分的宽度
this.translateX((this.tabs.length - this.tabsCount) * this.width - this.unoccupied)
})
}
},
mounted() {
this.tabs.push({
name: `test${this.count}`,
meta: {
title: `test${this.count}`
}
})
this.$nextTick(() => {
let tabs = this.$refs.tabs
let getStyle = getComputedStyle(tabs.children[0].children[0], null)
let marginLeft = parseFloat(getStyle.marginLeft.substr(0, getStyle.marginLeft.length - 2))
let marginRight = parseFloat(getStyle.marginRight.substr(0, getStyle.marginRight.length - 2))
// 元素实际宽度 = 元素的宽度 + 外边距
this.width = marginLeft + marginRight + tabs.children[0].children[0].offsetWidth
/**
* 以下注释计算方式用于理解实现逻辑
**/
// // 可视区域能放入多少个元素 = 可视区域的宽度 / 子元素实际宽度
// let num = tabs.offsetWidth / this.width
// // 被遮挡tab元素的可见部分的宽度 = 可见区域的宽度 - (子元素实际宽度 * num转为整数)
// this.unoccupied = tabs.offsetWidth - (this.width * parseInt(num))
// 最终精简为取余(得数跟上面的计算是一样的)
this.unoccupied = tabs.offsetWidth % this.width
// 转为整数
this.tabsCount = parseInt(tabs.offsetWidth / this.width)
})
},
methods: {
add() {
this.count++
this.actionName = `test${this.count}`
},
/**
* 切换tab标签页
**/
clickTab(name) {
if (this.actionName !== name) {
this.actionName = name
}
},
/**
* 关闭tab标签页
**/
close(name) {
let len = this.tabs.length
let jumpName = null
if (len > 1) {
for (let i = 0; i < len; i++) {
if (this.tabs[i].name === name) {
this.tabs.splice(i, 1)
jumpName = this.tabs[i ? i - 1 : 0].name
if (this.actionName !== jumpName && name === this.actionName) {
this.actionName = jumpName
}
this.$nextTick(() => {
this.previous()
})
return
}
}
}
},
/**
* 往右偏移
**/
next() {
// scrollWidth获取不准确
// 使用this.width * this.tabs.length计算出总长度
let totalWidth = this.width * this.tabs.length
this.$nextTick(() => {
let dom = this.$refs.tabs
// 可视区域 < 滚动区域(滚动区域大于可视区域才可以移动)
// 移动距离 + 可视区域 = 滚动区域的宽度(上一次的宽度,当点击时才是实际宽度)< 滚动区域
if (dom.clientWidth < totalWidth && this.moveX + dom.clientWidth < totalWidth) {
// this.moveX为0减去空余空间的宽度
this.moveX += this.moveX ? this.width : this.width - this.unoccupied
this.translateX(this.moveX)
}
})
},
/**
* 往左偏移
**/
previous() {
if (this.moveX > 0) {
this.moveX -= this.width
this.translateX(this.moveX)
}
},
/**
* 开始移动dom
**/
translateX(x) {
this.moveX = x < 0 ? 0 : x
this.$refs.tabs.children[0].style.transform = `translateX(-${this.moveX}px)`
}
}
}
</script>
<style lang="scss" scoped>
.main-box {
height: 500px;
width: 500px;
padding: 10px 20px 20px 20px;
.main-box-tab {
position: relative;
padding: 10px 20px;
overflow: hidden;
& > i {
position: absolute;
cursor: pointer;
bottom: 15px;
&:nth-child(1) {
left: 0;
}
&:nth-child(2) {
right: 0;
}
}
.main-box-tab-content {
overflow: hidden;
.main-box-tab-roll {
transition: transform .5s;
display: flex;
align-items: center;
li {
flex-shrink: 0;
cursor: pointer;
width: 130px;
height: 25px;
margin: 0 5px;
display: flex;
align-items: center;
justify-content: space-between;
span, i {
font-size: 12px;
}
span {
margin-left: 10px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
i {
margin-right: 10px;
}
}
}
}
.tab-item {
color: #cccccc;
background-color: rgba(255, 255, 255, .5);
border-radius: 0 1px 0 1px;
border: 1px solid #052141;
}
.tab-item-action {
color: #ffffff;
background: rgba(0, 180, 255, 0.8);
border-radius: 0 1px 0 1px;
border: 1px solid #1E2088;
}
}
.main-box-content {
height: calc(100% - 70px);
padding: 10px;
border: 1px saddlebrown solid;
background-size: 100% 100%;
}
}
</style>
到此这篇关于vue实现tab标签(标签超出自动滚动)的文章就介绍到这了,更多相关vue tab标签 内容请搜索开心学习网以前的文章或继续浏览下面的相关文章希望大家以后多多支持开心学习网!
- vueelementui左侧菜单(Vue Element前端应用开发之动态菜单和路由的关联处理)
- vue项目步骤(Vue项目中常用的实用技巧汇总)
- vue-router的安装(详解Vue-Router的安装与使用)
- vue 选中背景高亮(vue 如何设置背景颜色及透明度)
- vue三种判断条件(Vue中插槽和过滤器的深入讲解)
- vue用于动态切换组件的内置组件(Vue 可拖拽组件Vue Smooth DnD的使用详解)
- vue实现一个炫酷的日历组件(vue利用Moment插件格式化时间的实例代码)
- vue移动端图片放大效果实现(vue实现图片切换效果)
- vue实现展开动画(Vue组件实现旋转木马动画)
- 小白vue教学(尤大大新活petite-vue的实现)
- vue实现商品详情讲解(京东 Vue3 组件库支持小程序开发的详细流程)
- vue实现添加购物车小球(Vue实现简易购物车案例)
- vue组件方法里如何修改data(vue项目中使用rem替换px的实现示例)
- vue和springboot实战项目(vue+spring boot实现校验码功能)
- vueaxios使用教程交流(Vue使用axios图片上传遇到的问题)
- vue实现pc聊天页面(vue实现web在线聊天功能)
- 吉林舒兰 封城 15人确诊 276人隔离,出现跨省传播(吉林舒兰封城)
- 四月新番CP人气榜公布,《剃须》两度上榜,沙优不是女朋友(四月新番CP人气榜公布)
- 2019年外媒秋季新番动画角色CP排行榜,桐人和爱丽丝落榜(2019年外媒秋季新番动画角色CP排行榜)
- 新一小兰领衔 盘点动漫中的那些 远距离恋爱情侣(盘点动漫中的那些)
- 大事件 合肥四中火了(大事件合肥四中火了)
- 翼龙贷组织出借人调研 感受鄱阳 借 来的致富路(翼龙贷组织出借人调研)
热门推荐
- centosdocker镜像安装mysql(linux下利用Docker安装mysql的步骤)
- vue的路由模式有几种(Vue 路由返回恢复页面状态的操作方法)
- flashfxp如何设置中文(flashfxp怎么用?flashfxp使用方法)
- CSS网页布局的几个建议
- laravel获取客户端ip(对laravel的session获取与存取方法详解)
- laravel认证系统(Laravel框架Auth用户认证操作实例分析)
- sql server网络配置
- JavaScript css3实现简单视频弹幕功能(JavaScript css3实现简单视频弹幕功能)
- SQL Server批处理注意的事项
- mysql join规则(浅谈为什么MySQL不推荐使用子查询和join)