Swiper.js的使用

下载swiper.min.js和swiper.min.css

  在html头部引入这两个文件,

  

  

  

       在HTML文件的对应位置添加相应的class名,如: 

       

   “这里可以实现banner的背景图片的切换,和轮播图一样的效果,不需要在html引入图片

   在css中引入图片

 

   nav .banner .swiper-wrapper .slide1{width:100%;height:495px;background: url(../img/banner.png)no-repeat;background-position: center center;}

   nav .banner .swiper-wrapper .slide2{width:100%;height:495px;background: url(../img/banner2.png)no-repeat;background-position: center center;}

           nav .banner .swiper-wrapper .slide3{width:100%;height:495px;background: url(../img/banner3.png)no-repeat;background-position: center center;}”

    

         JavaScript:

 

  var mySwiper = new Swiper ('.swiper-container', {

      direction: 'horizontal', 

      loop: true,

      speed:1000,

      autoplay: {

        delay: 3000,

      },

      scrollbar: {

        el: '.swiper-scrollbar',

      },

      pagination: {

        el: '.swiper-pagination',

        clickable: true,

      },

   });

你可能感兴趣的:(Swiper.js的使用)