Vue实现可复用轮播组件的方法

 更新时间:2022年07月14日 15:38:23   作者:whiteplayer  
这篇文章主要为大家详细介绍了Vue实现可复用轮播组件的方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文用vue简单的实现了一个轮播图的基础功能,并抽离出来作为一个公共组件,方便复用

html和js部分

<template>
  <div
    class="img-box"
    ref="img-box"
    :style="{width: styles.width, height: styles.height}"
  >
    <div v-for="(item, index) in imgList"
         :key="index"
         class="img-item"
         :ref="'img-item-' + index"
         :class="{'active': index === active}"
    >
      <img
        :src="item"
        style="width:100%"
        :style="{height: styles.height}"
      />
    </div>
    <div
      class="img-position"
      v-if="isShowPosition"
    >
      <template v-for="(item, index) in imgList">
        <span :key="index"
              class="img-position-item"
              :ref="'img-position-' + index"
              :class="[
                {'active': index === active},
                isCircle ? 'circle' : '',
                isNums ? 'nums' : ''
              ]"
              @click="clickSpan(index)"
        >
          {{isNums ? index + 1 : ''}}
        </span>
      </template>
    </div>
    <div
      class="left-btn"
      v-if="isShowLeftOrRightBtn"
      @click="clickBtn('left')"
    >
      <i class="iconfont roll-zuo"></i>
    </div>
    <div
      class="right-btn"
      v-if="isShowLeftOrRightBtn"
      @click="clickBtn('right')"
    >
      <i class="iconfont roll-you"></i>
    </div>
  </div>
</template>

<script>
export default {
  name: 'Roll',
  props: {
    imgList: { // 图片列表 src数组
      type: Array,
      default: () => []
    },
    isShowPosition: { // 是否显示下方小圆点
      type: Boolean,
      default: true
    },
    positionInner: { // 圆点内容
      type: String,
      default: 'circle' // 默认圆点,可选值 circle => 圆点 num => 数字 both => 圆点+数字
    },
    isShowLeftOrRightBtn: { // 是否显示左右按钮
      type: Boolean,
      default: true
    },
    duration: { // 切换间隔
      type: [Number, String],
      default: 3000
    },
    styles: { // 自定义轮播图片宽高 默认500*300
      type: Object,
      default: () => {
        return {
          width: '500px',
          height: '300px'
        }
      }
    }
  },
  data () {
    return {
      active: 0, // 当前轮播图片
      timer: null // 定时器
    }
  },
  computed: {
    isCircle () {
      return ['circle', 'both'].includes(this.positionInner)
    },
    isNums () {
      return ['num', 'both'].includes(this.positionInner)
    }
  },
  updated () {
    if (this.timer) this.clearTimer()
    this.setTimer()
  },
  created () {
    this.setTimer()
  },
  methods: {
    clickSpan (index) {
      this.clearTimer()
      this.active = index
    },
    clickBtn (arg) {
      this.clearTimer()
      if (arg === 'left') {
        this.active = this.active - 1 < 0 ? this.imgList.length - 1 : this.active - 1
      } else {
        this.active = this.active + 1 === this.imgList.length ? 0 : this.active + 1
      }
      this.setTimer()
    },
    setTimer () {
      this.timer = setInterval(() => {
        this.clickBtn('right')
      }, Number(this.duration))
    },
    clearTimer () {
      clearInterval(this.timer)
      this.timer = null
    }
  }
}
</script>

css样式部分

<style scoped>
@import url('//at.alicdn.com/t/font_1451815_senarwrqu6.css');
* {
  margin: 0;
  padding: 0;
}
.img-box {
  position: relative;
  margin: 0 auto;
}
.img-item {
  height: 100%;
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -5;
  text-align: center;
}
.img-item.active {
  z-index: 0;
  opacity: 1;
  transition: .3s;
}
.img-position {
  position: absolute;
  bottom: 5px;
  left: 50%;
  display: flex;
  transform: translate(-50%, 0);
}
.img-position-item {
  display: inline-block;
  width:10px;
  height:10px;
  box-sizing: border-box;
  cursor: pointer;
}
.img-position-item.circle {
  border-radius: 50%;
  border: 1px solid #606266;
}
.img-position-item.nums {
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #606266;
  font-size:14px;
}
.img-position-item:hover, .img-position-item.active {
  border-color: #d1d2d3;
  color: #d1d2d3;
  transition: .3s;
}
.img-position-item + .img-position-item {
  margin-left: 10px;
}
.left-btn, .right-btn {
  position: absolute;
  top: 50%;
  bottom: 0;
  width: 20px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #d1d2d3;
  font-size: 20px;
  transform: translate(0, -50%);
}
.left-btn:hover, .right-btn:hover {
  color: #fff;
  transition: .3s;
}
.left-btn {
  left: 5px;
}
.right-btn {
  right: 5px;
}
</style>

只是简单的实现了一个轮播图比较基础的部分,之前用原生写了一遍,现在用vue写一遍作为一个组件,也还不错。

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

相关文章

  • vue实现键盘输入支付密码功能

    vue实现键盘输入支付密码功能

    这篇文章主要为大家详细介绍了vue实现键盘输入支付密码功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-08-08
  • 解决在vue项目中,发版之后,背景图片报错,路径不对的问题

    解决在vue项目中,发版之后,背景图片报错,路径不对的问题

    下面小编就为大家分享一篇解决在vue项目中,发版之后,背景图片报错,路径不对的问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-03-03
  • vue-cli3全面配置详解

    vue-cli3全面配置详解

    这篇文章主要介绍了vue-cli3全面配置详解,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-11-11
  • vue3.x项目降级到vue2.7的解决方案

    vue3.x项目降级到vue2.7的解决方案

    Vue2.7是Vue2.x的最终次要版本,下面这篇文章主要给大家介绍了关于vue3.x项目降级到vue2.7的解决方案,文中通过实例代码介绍的非常详细,需要的朋友可以参考下
    2023-03-03
  • Vue-CLI3.x 设置反向代理的方法

    Vue-CLI3.x 设置反向代理的方法

    这篇文章主要介绍了Vue-CLI3.x 设置反向代理的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-12-12
  • 解决axios发送post请求返回400状态码的问题

    解决axios发送post请求返回400状态码的问题

    今天小编就为大家分享一篇解决axios发送post请求返回400状态码的问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-08-08
  • vue3实现ai聊天对话框功能

    vue3实现ai聊天对话框功能

    这篇文章主要介绍了vue3实现ai聊天对话框功能,本文通过实例代码给大家介绍的非常详细,感兴趣的朋友一起看看吧
    2024-12-12
  • Vue2 的 diff 算法规则原理详解

    Vue2 的 diff 算法规则原理详解

    这篇文章主要介绍了Vue2的diff算法规则原理详解,diff 算法,就是通过比对新旧两个虚拟节点不一样的地方,针对那些不一样的地方进行新增或更新或删除操作。接下来我们详细介绍节点更新的过程
    2022-06-06
  • vue element实现将表格单行数据导出为excel格式流程详解

    vue element实现将表格单行数据导出为excel格式流程详解

    这篇文章主要介绍了vue element实现将表格单行数据导出为excel格式流程,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧
    2022-12-12
  • 创建和运行Vue.js项目方法demo

    创建和运行Vue.js项目方法demo

    这篇文章主要为大家介绍了创建和运行Vue.js项目方法demo,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-12-12

最新评论