swipe.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. if (swipe.obj===null) return false;
  20. swipe.offset = -1 * e.x;
  21. swipe.obj.css({
  22. WebkitTransform: 'translateX(' + swipe.offset + 'px)',
  23. MozTransform: 'translateX(' + swipe.offset + 'px)',
  24. transform: 'translateX(' + swipe.offset + 'px)'
  25. });
  26. },
  27. stop: function(e, left, right) {
  28. console.log('stop with ' + e.x);
  29. if (e.x<=-swipe.tolerance) left(true);
  30. else if (e.x>=swipe.tolerance) right(true);
  31. else {
  32. console.log('reset');
  33. swipe.obj.css({
  34. WebkitTransform: 'translateX(0px)',
  35. MozTransform: 'translateX(0px)',
  36. transform: 'translateX(0px)'
  37. });
  38. }
  39. swipe.obj = null;
  40. swipe.offset = 0;
  41. }
  42. };