swipe.js 1022 B

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. object: null,
  9. position: {
  10. x: null,
  11. y: null
  12. },
  13. start: function(object, e) {
  14. console.log('start with ' + object);
  15. swipe.object = object;
  16. if (swipe.position.x===null)
  17. swipe.position.x = e.originalEvent.pageX;
  18. if (swipe.position.y===null)
  19. swipe.position.y = e.originalEvent.pageY;
  20. return true;
  21. },
  22. move: function(e) {
  23. var offset = {
  24. x: -1 * (swipe.position.x - e.originalEvent.pageX),
  25. y: -1 * (swipe.position.y - e.originalEvent.pageY)
  26. }
  27. if (swipe.position.x!==null) {
  28. $(swipe.object).css({
  29. '-webkit-transform': 'translateX(' + offset.x + 'px);',
  30. '-moz-transform': 'translateX(' + offset.x + 'px);',
  31. 'transform': 'translateX(' + offset.x + 'px);'
  32. });
  33. }
  34. console.log(offset);
  35. },
  36. stop: function() {
  37. console.log('stop');
  38. swipe.object = null;
  39. swipe.position.x = null;
  40. swipe.position.y = null;
  41. }
  42. };