vue swiper中使用animate.css

需要的插件

  • npm install animate.css --save文档所在

  • npm install swiper vue-awesome-swiper --save

  • 使用说明

    • 利用animate.css的自定义类名使用方法,配合当前选中swiper类名,达到给只给当前选中swiperside中的标签添加动画的效果

    • 在这里我使用了样式穿透,因为是创建的vue项目

  • 一些小问题

    • 这两个样式必须同时存在,顺序也不能改变,animation是简写的动画样式,具体自己查一下,细心就可以避免
 animation: bounceInLeft;
 animation-duration: 2s;

使用示例

<swiper ref="mySwiper" :options="swiperOptions">
      <swiper-slide>
        <h1 class="bounce">An animated element</h1>
      </swiper-slide>
      <swiper-slide>
        <h1 class="flash">An animated element</h1>
      </swiper-slide>
      <swiper-slide>
        <h1 class="bounceInLeft">An animated element</h1>
      </swiper-slide>
      <swiper-slide>
        <h1 class="shakeY">shakeY</h1>
      </swiper-slide>
      <swiper-slide>
        <h1 class="flash">An animated element</h1>
      </swiper-slide>
    </swiper>
// swiper配置
swiperOptions: {
          direction: 'vertical',
          loop: true,
          autoplay: {
            disableOnInteraction: false,
          }
        }

// css样式
 ::v-deep .swiper-container {
    width: 100%;
    height: 100vh;

    .swiper-slide-active {

      .bounce {
        animation: bounce;
        animation-duration: 2s;

      }

      .shakeY {
        animation: shakeY;
        animation-duration: 2s;
      }

      .flash {
        animation: flash;
        animation-duration: 2s;
      }

      .bounceInLeft {
        animation: bounceInLeft;
        animation-duration: 2s;
      }
    }

   
  }

posted @   阿臻  阅读(1262)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!
点击右上角即可分享
微信分享提示