|
本帖最后由 tvrfqbmnm 于 2015-12-5 22:47 编辑
在今天开发animateControl 的后续版本时,在swiper中出现一个BUG,代码如下:
- var mySwiper = new Swiper('.swiper-container',{
- slidesPerView : 2,
- slidesPerColumn : 2,
- loop: true,
- paginationBulletRender : function(index, className){
- return '<span class="' + className +'">' + (index + 1) + '</span>';
- },
- });
复制代码
在上述代码中,如果把loop设置为false时,一切正常,但当我设置为true时:从后往前滑动,可以循环(但会出现跳帧现象);从前往后滑动,无法循环。
补充,如果有6个slide,把loop设置为false时,在pagination中只有两页;当把loop设置为true时,在pagination中就变成了6页(理论上在循环时应该有3页才对)。
不知道是什么原因导致,望高手帮助解答。
|
|