forked from udacity/asteroids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ipad.js
35 lines (29 loc) · 1.33 KB
/
ipad.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
var ipad = navigator.userAgent.match(/iPad/i) != null;
if (ipad) {
$(function () {
$('#left-controls, #right-controls').show();
$('body > *').hide();
$('body').css('margin', '0px').css('background', 'black').prepend($('#game-container').remove());
$('#game-container').width(1024).css('margin-top', 26).show();
$('#canvas').attr('width', 1020).attr('height', 660).css('background', 'white').css('margin', '0 1');
$('head').prepend($('<meta/>').attr('name', 'viewport').attr('content', 'width=device-width; height=device-height; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;'));
$('#left-controls, #right-controls').bind('touchstart touchmove touchend', function (e) {
if (e.type != 'touchend') {
for (k in KEY_STATUS) {
KEY_STATUS[k] = false;
}
}
var touches = e.type == 'touchend' ? e.originalEvent.changedTouches : e.originalEvent.touches
for (var i = 0; i < touches.length; i++) {
var ele = document.elementFromPoint(touches[i].pageX, touches[i].pageY);
KEY_STATUS[ele.id] = (e.type != 'touchend');
}
});
$(document).bind('touchstart', function (e) {
window.gameStart = true;
});
$(document).bind('gesturestart gesturechange gestureend touchstart touchmove touchend', function (e) {
e.preventDefault();
});
});
}