angular2 使用swiper

第一步:

npm install swiper --save

第二步:下载swiper ts支持(ts声明文件:http://microsoft.github.io/Ty...)

npm install  @types/swiper --save

ts文件里:

import swiper from "Swiper";

swiperSlide:any
  swiperw() {
    let ss = new swiper('.swiper-container', {
      loop: true, // 循环模式选项
      effect : 'flip',
     //  effect: 'cube'
    })
    this.swiperSlide = ss
  }
  goto(e) {
    this.swiperSlide.slideToLoop(e, 1000, false);//切换到第一个slide,速度为1秒
  }

html

Slide 1
Slide 2

css

.swiper-container {
    width: 600px;
    height: 300px;
}

你可能感兴趣的:(angular4,javascript)