Swipe 2

0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pure Javascript
    var element = document.getElementById('mySwipe');
    window.mySwipe = Swipe(element, {
      startSlide: 0,
      auto: 3000,
      autoRestart: true,
      continuous: true,
      disableScroll: true,
      stopPropagation: true,
      callback: function(index, element) {},
      transitionEnd: function(index, element) {}
    });
  
With jQuery or Zepto
    window.mySwipe = $('#mySwipe').Swipe().data('Swipe');