Browse Source

Added swipe-mobule

Tobias Reich 11 years ago
parent
commit
9a18939090
3 changed files with 73 additions and 0 deletions
  1. 0 0
      assets/build/main.js
  2. 12 0
      assets/js/init.js
  3. 61 0
      assets/js/swipe.js

File diff suppressed because it is too large
+ 0 - 0
assets/build/main.js


+ 12 - 0
assets/js/init.js

@@ -109,6 +109,18 @@ $(document).ready(function(){
 		});
 	}
 
+	$(document)
+		.on("touchstart", "#imageview", function(e) {
+			swipe.start("#image", e);
+		})
+		.on("touchmove", function(e) {
+			console.log('move');
+			swipe.move(e);
+		})
+		.on("touchend", "#imageview", function() {
+			swipe.stop();
+		});
+
 	/* Document */
 	$(document)
 

+ 61 - 0
assets/js/swipe.js

@@ -0,0 +1,61 @@
+/**
+ * @name		Swipe Module
+ * @description	Swipes and moves an object.
+ * @author		Tobias Reich
+ * @copyright	2014 by Tobias Reich
+ */
+
+swipe = {
+
+	object: null,
+	position: {
+		x: null,
+		y: null
+	},
+
+	start: function(object, e) {
+
+		console.log('start with ' + object);
+
+		swipe.object = object;
+
+		if (swipe.position.x===null)
+			swipe.position.x = e.originalEvent.pageX;
+
+		if (swipe.position.y===null)
+			swipe.position.y = e.originalEvent.pageY;
+
+		return true;
+
+	},
+
+	move: function(e) {
+
+		var offset = {
+			x: -1 * (swipe.position.x - e.originalEvent.pageX),
+			y: -1 * (swipe.position.y - e.originalEvent.pageY)
+		}
+
+		if (swipe.position.x!==null) {
+			$(swipe.object).css({
+				'-webkit-transform': 'translateX(' + offset.x + 'px);',
+				'-moz-transform': 'translateX(' + offset.x + 'px);',
+				'transform': 'translateX(' + offset.x + 'px);'
+			});
+		}
+
+		console.log(offset);
+
+	},
+
+	stop: function() {
+
+		console.log('stop');
+
+		swipe.object = null;
+		swipe.position.x = null;
+		swipe.position.y = null;
+
+	}
+
+};

Some files were not shown because too many files changed in this diff