swipe.js 975 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**
  2. * @name Swipe Module
  3. * @description Swipes and moves an object.
  4. * @author Tobias Reich
  5. * @copyright 2014 by Tobias Reich
  6. */
  7. swipe = {
  8. obj: null,
  9. tolerance: 150,
  10. offset: 0,
  11. start: function(obj, tolerance) {
  12. console.log('start with ' + obj);
  13. if (obj) swipe.obj = obj;
  14. if (tolerance) swipe.tolerance = tolerance;
  15. return true;
  16. },
  17. move: function(e) {
  18. console.log(e);
  19. swipe.offset = -1 * e.x;
  20. swipe.obj.css({
  21. WebkitTransform: 'translateX(' + offset + 'px)',
  22. MozTransform: 'translateX(' + offset + 'px)',
  23. transform: 'translateX(' + offset + 'px)'
  24. });
  25. },
  26. stop: function(e, left, right) {
  27. console.log('stop with ' + e.x);
  28. if (e.x<=-swipe.tolerance) left();
  29. else if (e.x>=swipe.tolerance) right();
  30. else {
  31. console.log('reset');
  32. swipe.obj.css({
  33. WebkitTransform: 'translateX(0px)',
  34. MozTransform: 'translateX(0px)',
  35. transform: 'translateX(0px)'
  36. });
  37. }
  38. swipe.obj = null;
  39. swipe.offset = 0;
  40. }
  41. };