首页 > 其他分享 >在Vue中使用Swiper轮播图、同时解决点击轮播图左右切换按钮不生效的问题、同时将轮播图抽离出为一个公共组件

在Vue中使用Swiper轮播图、同时解决点击轮播图左右切换按钮不生效的问题、同时将轮播图抽离出为一个公共组件

时间:2022-11-05 15:02:06浏览次数:87  
标签:Vue 轮播 img 抽离 Swiper 组件 swiper 页面

轮播图左右的切换按钮、如果点击没有反应,控制台也没有报错。很大可能是==版本问题==。如果不指定版本信息、默认安装的是最新的版本。版本过高或者过低都有可能导致无效。目前兼容性和稳定性比较好的是:5.4.5

官网地址:https://www.swiper.com.cn/

1、安装Swiper

npm i [email protected]

在这里插入图片描述 在这里插入图片描述

2、在要使用的页面引入swiper

注:也可以在全局引入、这样在其它页面都可以使用到了。我这里就一个页面使用、就单独在某一个页面引入了。

import Swiper from "swiper";
import "swiper/css/swiper.min.css";

在这里插入图片描述

3、轮播图的位置

3.1 设置一个div放置到页面对应位置

分页器、切换按钮的颜色大小、以及切换效果都可以进行设置。

swiper学习网址

 <div class="swiper-container">
          <div class="swiper-wrapper">
            <div class="swiper-slide" v-for="(item, i) in images" :key="i">
              <img class="carousel-img" :src="item.img" alt="" />
            </div>
          </div>
          <!-- 如果需要分页器 -->
          <div class="swiper-pagination"></div>
          <!-- 如果需要导航按钮 -->
          <div class="swiper-button-prev"></div>
          <div class="swiper-button-next"></div>
        </div>

3.2 设置轮播图的大小和图片完全填充

.swiper-container {
  height: 350px;
  width: 95%;
}

.carousel-img {
  width: 100%;
  height: 100%;
}

3.3 轮播图片

这里使用双向数据绑定、这里的轮播图片后期可以进行替换。比如从后端接口返回的轮播图片替换数组中的。这里暂时写死

    images: [
        { img: "https://www.baidu.com/img/baidu_jgylogo3.gif" },
        { img: "http://localhost:8282/images/21667218837206.jpg" },
        { img: "http://localhost:8282/images/21667218837206.jpg" },
      ],

3.4 初始化一个轮播图

  mounted() {
    var mySwiper = new Swiper(".swiper-container", {
      autoplay: {
        delay: 5000,
        disableOnInteraction: false,
      }, //可选选项,自动滑动

      loop: true, // 循环模式选项
      speed: 4000,

      // 如果需要分页器
      pagination: {
        el: ".swiper-pagination",
        clickable: true,
      },

      // 如果需要前进后退按钮
      navigation: {
        nextEl: ".swiper-button-next",
        prevEl: ".swiper-button-prev",
        disabledClass: "my-button-disabled",
      },
    });
  },

4、自己遇到的问题

4.1 版本不正确

开始使用的3.4.2 版本的、使用这个版本导致轮播图的左右切换按钮不好使 在这里插入图片描述

4.2 如何在项目中卸载已经安装的包?

npm uninstall swiper

5、如何将Swiper抽离成一个组件?

这里不难看出、全部写在一个页面、会导致页面很臃肿。不如直接将swiper抽离成一个公共组件。哪个页面想使用,直接引入组件

5.1 抽离出公共组件

MySwiper.vue

<template>
  <div class="swiper-container">
    <div class="swiper-wrapper">
      <div class="swiper-slide" v-for="(item, i) in images" :key="i">
        <img class="carousel-img" :src="item.img" alt="" />
      </div>
    </div>
    <!-- 如果需要分页器 -->
    <div class="swiper-pagination"></div>
    <!-- 如果需要导航按钮 -->
    <div class="swiper-button-prev"></div>
    <div class="swiper-button-next"></div>
  </div>
</template>

<script>
import Swiper from "swiper";
import "swiper/css/swiper.min.css";
export default {
  name: "MySwiper",
  data() {
    return {
      images: [
        { img: "https://www.baidu.com/img/baidu_jgylogo3.gif" },
        { img: "http://localhost:8282/images/21667218837206.jpg" },
        { img: "http://localhost:8282/images/21667218837206.jpg" },
      ],
    };
  },
  mounted() {
    var mySwiper = new Swiper(".swiper-container", {
      autoplay: {
        delay: 5000,
        disableOnInteraction: false,
      }, //可选选项,自动滑动

      loop: true, // 循环模式选项
      speed: 4000,

      // 如果需要分页器
      pagination: {
        el: ".swiper-pagination",
        clickable: true,
      },

      // 如果需要前进后退按钮
      navigation: {
        nextEl: ".swiper-button-next",
        prevEl: ".swiper-button-prev",
        disabledClass: "my-button-disabled",
      },
    });
  },
};
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.carousel-img {
  width: 100%;
  height: 100%;
}

.swiper-container {
  height: 350px;
  width: 95%;
}
</style>

5.2 在对应页面引入

import MySwiper from "@/components/MySwiper";

  components: {
    MySwiper
  },

在这里插入图片描述

5.3 将组件放到对应位置

组件中可以进行传参的、具体怎样传参。我之前笔记有些、同样可以将后端返回的轮播图图片替换掉数组中的图片。这样就可以动态改变轮播图的图片

    <!-- 轮播图组件 -->
        <MySwiper></MySwiper>

在这里插入图片描述

6、后语

进一步加深了对组件的使用、轮播图好用。学无止境。。。。。。

标签:Vue,轮播,img,抽离,Swiper,组件,swiper,页面
From: https://blog.51cto.com/u_15740728/5825970

相关文章

  • 不使用hbuilderx创建 基于vue3 + vite的uniapp
    创建以javascript开发的工程npxdegitdcloudio/uni-preset-vue#vitemy-vue3-project创建以typescript开发的工程npxdegitdcloudio/uni-preset-vue#vite-tsmy-......
  • Vue编程式路由导航、缓存路由组件、新的钩子函数
    1、编程式路由导航1.1作用不借助<router-link>实现路由跳转,让路由跳转更加灵活1.2具体编码//$router的两个APIthis.$router.push({ name:'xiangqing',......
  • Vue2的组件中data为什么不能使用对象
    当一个组件被定义,data必须声明为返回一个初始数据对象的函数,因为组件可能被用来创建多个实例。如果data仍然是一个纯粹的对象,则所有的实例将共享引用同一个数据对象!通......
  • vue2搭配vue-router3真正可用不报错的写法格式
    这里要吐槽下vue和vue-router的文档教程本身前端的版本就多,版本之间还各种不兼容,用法函数还多种多样,一会这个组件一会那里是按普通渲染,简直让人不知道按哪个才是对的。然......
  • SpringBoot,Vue,ELementui实现文件上传,下载,删除
    SpringBoot,Vue,ELementui实现图片文件上传、下载、删除:el-upload表单+vue效果:代码: <el-upload class="avatar-uploader" action="/api/common/uplo......
  • 零售商贩mysql表设计:banner+banner_item+image关联表(轮播图表)
    作者:陈业贵华为云享专家51cto(专家博主明日之星TOP红人)阿里云专家博主文章目录​​banner管理表(轮播图管理表)​​​​解析banner管理表(轮播图管理表)​​​​id解析:​......
  • vue 跨域代理,对象存储(阿里云、aws)预签名上传文件
    一、安装axoios    ①、全局安装axois#全局安装axiosPSE:\Code\Vues\sha_web\sha_web>npminstallaxios--g 二、配置跨域代理    ①、配置跨......
  • Vue的生命周期
    生命周期=>重出生到死亡的一个过程  Vue也自己的生命周期    初始化阶段:执行一次   创建阶段     beforeCreate:创建之前    ......
  • Vue闪烁的问题
    问题:当我们打开Vue页面的时候,如果弱网环境,会出现一个闪烁的效果原因:Vue还来不及处理的模板解决:使用v-cloak来解决Vue这个打开页面的闪烁的问题原理:利用v-c......
  • Vue中Key值的一些问题
    1.Vue里面的key是一个特殊的变量,在元素当中是不体现出来的2.在解析成虚拟DOM的是,如果我们没有写key值,那么这个key就类似于下标0,1,2,3....3.使用列表渲染......