mirror of https://github.com/sundowndev/Detank.git
92i Veyron
parent
8b13b4d6ce
commit
d1fc73ce24
|
@ -1,7 +1,6 @@
|
||||||
function move(event) {
|
function move(event) {
|
||||||
var k = event.keyCode,
|
var k = event.keyCode,
|
||||||
chrId = document.querySelector('.test'),
|
chrId = document.querySelector('.block'),
|
||||||
chrId = document.querySelector('.alderiate'),
|
|
||||||
chr = {
|
chr = {
|
||||||
updown: function () {
|
updown: function () {
|
||||||
var y = parseInt(getComputedStyle(chrId).top);
|
var y = parseInt(getComputedStyle(chrId).top);
|
||||||
|
@ -12,7 +11,7 @@ function move(event) {
|
||||||
}
|
}
|
||||||
} else if (k == 40) {
|
} else if (k == 40) {
|
||||||
y += 10;
|
y += 10;
|
||||||
if ( y == 410 ){
|
if ( y == 650 ){
|
||||||
y -= 10;
|
y -= 10;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,7 +27,7 @@ function move(event) {
|
||||||
}
|
}
|
||||||
} else if (k == 39) {
|
} else if (k == 39) {
|
||||||
x += 10;
|
x += 10;
|
||||||
if ( x == 910 ){
|
if ( x == 1160 ){
|
||||||
x -= 10;
|
x -= 10;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue