TA的每日心情 | 开心 2017-12-19 20:51 |
---|
签到天数: 1 天 [LV.1]初来乍到
新手上路
- 积分
- 10
|
如题,本人现在使用react开发项目,用到了swiper,轮播图可以正常使用,但是回到函数却一个没有触发?还是本人写法有问题,求大佬指教
componentDidMount() {
var ele = this.refs.swiperContainer;
var mySwiper = new Swiper(ele, {
speed: 4000,
spaceBetween: 0,
// initialSlide: this.state.slideIndex,
onKeyPress: function(swiper, event){
alert('你按了键盘'+event);
},
onTap: function(swiper){
alert('你tap了Swiper');
},
onClick:function(){
console.log(123);
},
onInit: function(swiper) {
alert();
console.log(swiper.activeIndex); //提示Swiper的当前索引
},
onSlideChangeEnd: function(swiper) {
alert();
console.log(swiper.activeIndex); //切换结束时,告诉我现在是第几个slide
}
});
|
|