动员旋转木马方向

时间:2013-09-24 14:00:11

标签: jquery mobile carousel mobify

我正在使用Mobify carousel作为移动模板

当方向更改为rtl时,滑动功能无法正常工作。有没有解决这个问题?

2 个答案:

答案 0 :(得分:1)

您是否考虑过使用http://swipejs.com/代替mobyfy,它开箱即用左/右和右/左支持

您需要开始的所有内容都是

<div id='slider' class='swipe'>
  <div class='swipe-wrap'>
    <div></div>
    <div></div>
    <div></div>
  </div>
</div>

window.mySwipe = new Swipe(document.getElementById('slider'), {
  startSlide: 2,
  speed: 400,
  auto: 3000,
  continuous: true,
  disableScroll: false,
  stopPropagation: false,
  callback: function(index, elem) {},
  transitionEnd: function(index, elem) {}
});

答案 1 :(得分:0)

通过在下面的代码中更改左右来解决问题

if (dx > 0) {
self.prev();
} else {
self.next();
}