返回顶部
首页 > 资讯 > 前端开发 > VUE >Vue实现可复用轮播组件的方法
  • 865
分享到

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

2024-04-02 19:04:59 865人浏览 独家记忆
摘要

本文用Vue简单的实现了一个轮播图的基础功能,并抽离出来作为一个公共组件,方便复用 html和js部分 <template>   <div     class="i

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

htmljs部分

<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写一遍作为一个组件,也还不错。

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

--结束END--

本文标题: Vue实现可复用轮播组件的方法

本文链接: https://lsjlt.com/news/34255.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • Vue实现可复用轮播组件的方法
    本文用vue简单的实现了一个轮播图的基础功能,并抽离出来作为一个公共组件,方便复用 html和js部分 <template>   <div     class="i...
    99+
    2024-04-02
  • 怎么使用vue轮播组件vue-awesome-swiper实现轮播图
    这篇文章主要讲解了“怎么使用vue轮播组件vue-awesome-swiper实现轮播图”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么使用vue轮播组件vue-awesome-swipe...
    99+
    2023-07-04
  • Vue实现轮播图组件的封装
    目录轮播图功能-获取数据轮播图-通用轮播图组件轮播图-数据渲染轮播图-逻辑封装轮播图功能-获取数据 目标: 基于pinia获取轮播图数据 核心代码: (1)在types/data.d...
    99+
    2023-05-16
    Vue轮播图组件封装 Vue组件封装
  • 怎么用vue轮播组件实现$children和$children
    这篇文章主要介绍了怎么用vue轮播组件实现$children和$children的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇怎么用vue轮播组件实现$children和$children文章都会有所收获,下面...
    99+
    2023-07-04
  • 使用JSX实现Carousel轮播组件的方法(前端组件化)
    在我们用 JSX 建立组件系统之前,我们先来用一个例子学习一下组件的实现原理和逻辑。这里我们就用一个轮播图的组件作为例子进行学习。轮播图的英文叫做 Carousel,它有一个旋转木马...
    99+
    2024-04-02
  • vue轮播组件如何实现$children和$parent
    这篇文章主要为大家展示了“vue轮播组件如何实现$children和$parent”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“vue轮播组件如何实现$chil...
    99+
    2024-04-02
  • 基于vue.js轮播组件vue-awesome-swiper实现轮播图的示例分析
    这篇文章主要为大家展示了“基于vue.js轮播组件vue-awesome-swiper实现轮播图的示例分析”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“基于vu...
    99+
    2024-04-02
  • vue添加vue-awesome-swiper轮播组件方式
    目录添加vue-awesome-swiper轮播组件vue-awesome-swiper不轮播问题添加vue-awesome-swiper轮播组件 1.vue项目中添加swiper组...
    99+
    2022-11-13
    vue添加vue-awesome-swiper vue-awesome-swiper轮播组件 vue vue-awesome-swiper
  • Vue使用Swiper封装轮播图组件的方法详解
    目录Swiper为什么要封装组件开始封装1.下载安装Swiper2.引入css样式文件3.引入js文件4.把官网使用方法中的HTML结构复制粘贴过来5.初始化Swiper自定义效果完...
    99+
    2024-04-02
  • Vue组件实现景深卡片轮播示例
    目录前言需求拆解开发思路(vue2)开发过程后记前言 朋友的朋友做了个首页,首页用到一个卡片轮播,大概就是这个样子的: 第一版他们是开发出来了,但是各种bug,希望我帮忙改一下。 ...
    99+
    2024-04-02
  • Vue实现可拖拽组件的方法
    本文为大家分享了Vue实现可拖拽、拖拽组件,供大家参考,具体内容如下 描述: 组件仅封装拖拽功能,内容通过#header、#default、#footer插槽 自定义 效果:&nbs...
    99+
    2024-04-02
  • android轮播图组件的制作方法
    本文实例为大家分享了android轮播图组件的制作方法,供大家参考,具体内容如下 BannerLayout package com.coral3.common_module.co...
    99+
    2024-04-02
  • vue3封装轮播图组件的方法
    目的 封装轮播图组件,直接使用,具体内容如下 大致步骤 准备my-carousel组件基础布局,全局注册 准备home-banner组件,使用my-carousel...
    99+
    2024-04-02
  • uniapp vue与nvue轮播图之轮播图组件的示例代码
    vue部分如下: <template> <view class=""> <!-- 轮播图组件 --> <swiper :ind...
    99+
    2024-04-02
  • vue使用swiper插件实现轮播图的示例
    目录vue - 使用swiper插件实现轮播图 使用watch与$nextTick解决轮播的Bug hello大家好,最近我在做一个仿饿了么的项目,我会将我的项目经验同步到这里,与大...
    99+
    2024-04-02
  • vue使用swiper插件实现垂直轮播图
    目录使用swiper插件做垂直轮播图swiper轮播插件使用 一次显示多个slidesSwiper 动态加载数据遇到的坑总结使用swiper插件做垂直轮播图 1.下载安装 cnpm ...
    99+
    2023-01-14
    vue使用swiper插件 vue垂直轮播图 vue swiper插件
  • css实现图片轮播的方法
    这篇文章主要介绍css实现图片轮播的方法,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!css的选择器有哪些css的选择器可以分为三大类,即id选择器、class选择器、标签选择器。它们之间可以有多种组合,有后代选择器...
    99+
    2023-06-14
  • Vue如何实现一个可复用组件
    本篇内容主要讲解“Vue如何实现一个可复用组件”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Vue如何实现一个可复用组件”吧!构成组件组件,是一个具有一定功能,且不同组件间功能相对独立的模块。组...
    99+
    2023-07-04
  • vue3+Pinia+TypeScript 实现封装轮播图组件
    目录为什么封装?静态结构 后面再进行更改请求数据都存放在pinia里面类型检测页面级组件全局组件为什么封装? 迎合es6模块化开发思想注册为全局组件,可以更好地复用,需要用到的地方,...
    99+
    2024-04-02
  • Angular2如何使用组件与指令实现图片轮播组件
    这篇文章主要介绍了Angular2如何使用组件与指令实现图片轮播组件,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。一、创建组件结束上文打的尴...
    99+
    2024-04-02
软考高级职称资格查询
推荐阅读
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作