vue轮播图实现多个图片或者视频水平播放

实现效果

 1.安装

 npm install vue-awesome-swiper@2.6.7 --save

 npm install swiper --save-dev

2.main.js引入

import "../node_modules/swiper/css/swiper.min.css"

import VueAwesomeSwiper from 'vue-awesome-swiper'

Vue.use(VueAwesomeSwiper)

3.封装组件 swiper.vue

<!-- The ref attr used to find the swiper instance -->
<template>
  <div class="swiper_div">
    <swiper
      :options="swiperOption"
      :not-next-tick="notNextTick"
      ref="mySwiper"
      class="sw"
    >
      <!-- slides -->
      <swiper-slide v-for="i in videoList" :key="i.url">
        <video :src="i.url" controls width="100%" height="100%"></video>
      </swiper-slide>
      <div class="swiper-button-prev" slot="button-prev"></div>
      <div class="swiper-button-next" slot="button-next"></div>
    </swiper>
  </div>
</template>
  
  <script>
// swiper options example:

export default {
  name: "carrousel",
  props: {
    videoList: {
      type: Array,
    },
  },
  data() {
    return {
      // NotNextTick is a component's own property, and if notNextTick is set to true, the component will not instantiate the swiper through NextTick, which means you can get the swiper object the first time (if you need to use the get swiper object to do what Things, then this property must be true)
      // notNextTick是一个组件自有属性,如果notNextTick设置为true,组件则不会通过NextTick来实例化swiper,也就意味着你可以在第一时间获取到swiper对象,假如你需要刚加载遍使用获取swiper对象来做什么事,那么这个属性一定要是true
      notNextTick: true,
      swiperOption: {
        // swiper options 所有的配置同swiper官方api配置
        autoplay: false, // 自动播放的时间间隔
        slidesPerView: 4, //一次显示的数量
        direction: "horizontal", // 水平轮播
        grabCursor: true,
        setWrapperSize: true,
        loop: true, //  循环播放
        autoHeight: true,
        // pagination: ".swiper-pagination",
        paginationClickable: true,
        prevButton: ".swiper-button-prev",
        nextButton: ".swiper-button-next",
        // scrollbar: ".swiper-scrollbar",
        mousewheelControl: true,
        observeParents: true,
        // if you need use plugins in the swiper, you can config in here like this
        // 如果自行设计了插件,那么插件的一些配置相关参数,也应该出现在这个对象中,如下debugger
        debugger: true,
        // swiper callbacks
        // swiper的各种回调函数也可以出现在这个对象中,和swiper官方一样
        onTransitionStart(swiper) {
          console.log(swiper);
        },
        // more Swiper configs and callbacks...
        // ...
      },
    };
  },
  // you can find current swiper instance object like this, while the notNextTick property value must be true
  // 如果你需要得到当前的swiper对象来做一些事情,你可以像下面这样定义一个方法属性来获取当前的swiper对象,同时notNextTick必须为true
  computed: {
    swiper() {
      return this.$refs.mySwiper.swiper;
    },
  },
  mounted() {
    // you can use current swiper instance object to do something(swiper methods)
    // 然后你就可以使用当前上下文内的swiper对象去做你想做的事了
    //   console.log('this is current swiper instance object', this.swiper)
    //   this.swiper.slideTo(3, 1000, false)
  },
};
</script>
  
  <style scoped>
/* sw为自己定义的样式 */
.swiper_div {
  position: relative;
}

.swiper-container {
  position: static;
}
.sw {
  width: 94%;
  height: 2rem;
  text-align: center;
}
.sw video {
  height: 2rem;
  width: 3.2rem;
}

.swiper-button-next {
  /* background-image: url('../../static/images/left.png');
     */
  color: rgb(170, 170, 170);
  height: 100%;
  width: 0.3rem;
  top: 0px !important;
  right: 0px;
  margin-top: 0;
  background: rgb(43, 43, 43);
}

.swiper-button-prev {
  color: rgb(170, 170, 170);
  height: 100%;
  width: 0.3rem;
  top: 0px !important;
  left: 0;
  margin-top: 0;
  background: rgb(43, 43, 43);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 0.24rem;
}
</style>
  

4.在所需要使用轮播图页面调用

html:
<Carrousel :videoList="videoList"></Carrousel>


script:
import Carrousel from "../../components/swiper.vue";

export default:
components: { Carrousel },

  • 2
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
假设你有三张图片,分别为 `img1.jpg`、`img2.jpg` 和 `img3.jpg`,并且有两个按钮 `prev` 和 `next`,点击这两个按钮可以切换这三张图片。你可以使用 Vue 3 的组件实现如下: HTML: ```html <template> <div> <button @click="prev">上一张</button> <button @click="next">下一张</button> <div class="images" ref="images"> <img v-for="(img, index) in imgList" :key="index" :src="img" /> </div> </div> </template> ``` CSS: ```css .images { display: flex; flex-wrap: nowrap; overflow-x: hidden; } .images img { flex-shrink: 0; width: 100%; } ``` JavaScript: ```javascript import { ref } from "vue"; export default { setup() { const imgList = ["img1.jpg", "img2.jpg", "img3.jpg"]; const imgCount = imgList.length; const currentIndex = ref(0); const images = ref(null); function prev() { currentIndex.value = (currentIndex.value - 1 + imgCount) % imgCount; images.value.style.transform = `translateX(${-currentIndex.value * 100}%)`; } function next() { currentIndex.value = (currentIndex.value + 1) % imgCount; images.value.style.transform = `translateX(${-currentIndex.value * 100}%)`; } return { imgList, currentIndex, prev, next, images, }; }, }; ``` 首先,使用 `import` 命令导入 Vue 3 的 `ref` 函数。然后,在组件的 `setup` 函数中,定义一个数组 `imgList` 来存储图片的路径,以及一个整数 `imgCount` 来记录图片的数量。使用 `ref` 函数定义一个响应式变量 `currentIndex` 来记录当前显示的图片的索引,初始值为 `0`。使用 `ref` 函数定义一个响应式变量 `images` 来引用图片容器的 DOM 元素。定义两个函数 `prev` 和 `next` 分别用于处理上一张和下一张按钮的点击事件。当上一张按钮被点击时,将 `currentIndex` 减 `1`,如果 `currentIndex` 小于 `0`,则将其加上图片数量,然后根据 `currentIndex` 来计算图片容器的 `transform` 属性的值,从而实现向左滑动的效果。当下一张按钮被点击时,将 `currentIndex` 加 `1`,并根据 `currentIndex` 来计算图片容器的 `transform` 属性的值,从而实现向右滑动的效果。注意,在计算 `currentIndex` 时,使用了取模运算,这样可以实现循环切换图片的效果。最后,将 `imgList`、`currentIndex`、`prev`、`next` 和 `images` 等变量和函数暴露给模板系统。在模板中,使用 `v-for` 指令和 `img` 元素来循环渲染图片,使用 `ref` 指令来引用图片容器的 DOM 元素。另外,使用了 CSS3 的 Flexbox 布局来实现图片容器的自适应布局和水平滑动效果。
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值