forked from alexyoung/turing.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turing.touch.js
101 lines (87 loc) · 2.54 KB
/
turing.touch.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*!
* Turing Touch
* Copyright (C) 2010-2011 Alex R. Young
* MIT Licensed
*/
/**
* Support for touchscreen devices. Run `turing.touch.register()` to get touch event support.
*
* Tap:
*
* turing.events.add(element, 'tap', function(e) {
* alert('tap');
* });
*
* Swipe:
*
* turing.events.add(element, 'swipe', function(e) {
* alert('swipe');
* });
*
* Orientation Changes:
*
* Device orientation is available in `turing.touch.orientation()`.
*
* turing.events.add(element, 'orientationchange', function(e) {
* alert('Orientation is now: ' + turing.touch.orientation());
* });
*/
(function() {
var touch = {}, state = {};
touch.swipeThreshold = 50;
// Returns [orientation angle, orientation string]
touch.orientation = function() {
var orientation = window.orientation,
orientationString = '';
switch (orientation) {
case 0:
orientationString += 'portrait';
break;
case -90:
orientationString += 'landscape right';
break;
case 90:
orientationString += 'landscape left';
break;
case 180:
orientationString += 'portrait upside-down';
break;
}
return [orientation, orientationString];
};
function touchStart(e) {
state.touches = e.touches;
state.startTime = (new Date).getTime();
state.x = e.changedTouches[0].clientX;
state.y = e.changedTouches[0].clientY;
state.startX = state.x;
state.startY = state.y;
state.target = e.target;
state.duration = 0;
}
function touchEnd(e) {
var x = e.changedTouches[0].clientX,
y = e.changedTouches[0].clientY;
if (state.x === x && state.y === y && state.touches.length == 1) {
turing.events.fire(e.target, 'tap');
}
}
function touchMove(e) {
var moved = 0, touch = e.changedTouches[0];
state.duration = (new Date).getTime() - state.startTime;
state.x = state.startX - touch.pageX;
state.y = state.startY - touch.pageY;
moved = Math.sqrt(Math.pow(Math.abs(state.x), 2) + Math.pow(Math.abs(state.y), 2));
if (state.duration < 1000 && moved > turing.touch.swipeThreshold) {
turing.events.fire(e.target, 'swipe');
}
}
// register must be called to register for touch event helpers
touch.register = function() {
turing.events.add(document, 'touchstart', touchStart);
turing.events.add(document, 'touchmove', touchMove);
turing.events.add(document, 'touchend', touchEnd);
turing.touch.swipeThreshold = screen.width / 5;
};
turing.touch = touch;
})();