touch and mouse
This commit is contained in:
parent
ca1a71540d
commit
41e87356fe
29
js/main.js
29
js/main.js
@ -16,17 +16,38 @@ $(document).ready(function() {
|
|||||||
sizeAndPos();
|
sizeAndPos();
|
||||||
$(window).resize(sizeAndPos);
|
$(window).resize(sizeAndPos);
|
||||||
|
|
||||||
$c.bind('mousedown touchstart', function(e) {
|
$c.bind('mousedown', function(e) {
|
||||||
alert(e.pageX);
|
e.preventDefault();
|
||||||
var xy = relative(e.pageX, e.pageY);
|
var xy = relative(e.pageX, e.pageY);
|
||||||
startPoint(xy.x, xy.y);
|
startPoint(xy.x, xy.y);
|
||||||
window.active = true;
|
window.active = true;
|
||||||
}).bind('mousemove touchmove', function(e) {
|
}).bind('mousemove', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
if (!window.active || settings.type == 'line') return;
|
if (!window.active || settings.type == 'line') return;
|
||||||
var xy = relative(e.pageX, e.pageY);
|
var xy = relative(e.pageX, e.pageY);
|
||||||
drawPoint(xy.x, xy.y);
|
drawPoint(xy.x, xy.y);
|
||||||
}).bind('mouseup touchend', function() {
|
}).bind('mouseup touchend', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
window.active = false;
|
window.active = false;
|
||||||
|
}).bind('touchstart', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
for( var i = 0, len = e.changedTouches.length; i < len; i++ ) {
|
||||||
|
var touch = e.changedTouches[i];
|
||||||
|
var xy = relative(touch.pageX, touch.pageY);
|
||||||
|
startPoint(xy.x, xy.y);
|
||||||
|
}
|
||||||
|
window.active = true;
|
||||||
|
}).bind('touchmove', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
if(!window.active || settings.type =='line') return;
|
||||||
|
|
||||||
|
for( var i = 0, len = e.changedTouches.length; i < len; i++ ) {
|
||||||
|
var touch = e.changedTouches[i];
|
||||||
|
var xy = relative(touch.pageX, touch.pageY);
|
||||||
|
drawPoint(xy.x, xy.y);
|
||||||
|
}
|
||||||
|
window.active = true;
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user