Swipe
Swipe copied to clipboard
Swipe is the most accurate touch slider.
Add fullscreen as true in the options and the browser fullscreen works. Default is fullscreen false. window.mySwipe = new Swipe(document.getElementById('slider'), { startSlide: 2, speed: 400, auto: 3000, fullscreen : true...
Allows configuration of how much of the incoming slide must be dragged in before a transition is triggered on a “slow swipe” (i.e. > 250ms). Rationale for this addition is...
-Include MSPointer Events -Test in tablet Lenovo thinkpad windows 8 -Test with AngularJS and Jquery
var swipe=(function(me){ var test = 1; var undefined = 1; // compare following situations: me.test1 = (test !== undefined); //false me.test2 = (typeof test !== 'undefine'); // true return me;...
Ember.js adds script tags in between elements. The childSelector option allows the swipes element children to be filtered using a selector.
swipe js dosen't work properly on opera mini
``` js var x = Swipe(document.getElementById("foo"), { disableTouch : true }); ``` "touchstart", "touchEnd" and "TouchMove" are disabled when the "disableTouch" flag is specified as false. If "true" or "undefined"...
This addresses issue #278. When there are only 2 slides, the actual slides are duplicated in order to support continuous scrolling. This causes the actual indices passed to callbacks to...