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
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
ruoyi-vue是一个基于Vue.js的管理系统框架,实现多个图片上传可以使用element-ui组件库提供的el-upload组件。 在使用el-upload组件时,需要注意以下几点: 1. 设置multiple属性为true,以允许上传多个文件; 2. 设置limit属性来限制文件上传数量; 3. 设置action属性来指定文件上传的地址; 4. 设置on-success属性来处理上传成功后的回调函数。 以下是一个示例代码: ``` <template> <div> <el-upload class="upload-demo" action="/api/upload" :multiple="true" :limit="3" :on-success="handleUploadSuccess"> <el-button size="small" type="primary">点击上传</el-button> </el-upload> </div> </template> <script> export default { methods: { handleUploadSuccess(response, file, fileList) { console.log(response); }, }, }; </script> ``` 在上面的代码中,我们使用了el-upload组件来实现多个图片上传功能。我们设置了multiple属性为true,表示允许上传多个文件;设置了limit属性为3,表示最多上传3个文件;设置了action属性为/api/upload,表示文件上传的地址;设置了on-success属性为handleUploadSuccess方法,用来处理上传成功后的回调函数。 在handleUploadSuccess方法中,我们可以获取到上传成功后服务器返回的响应数据response,以及当前上传的文件file和上传成功后的文件列表fileList。你可以根据自己的需求,对这些数据进行处理。 以上就是使用ruoyi-vue实现多个图片上传的方法。希望能对你有所帮助。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值