rotate
This commit is contained in:
parent
0bc8b2df94
commit
085763c88b
2 changed files with 12 additions and 12 deletions
|
@ -12,14 +12,14 @@
|
||||||
#player {
|
#player {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 10%;
|
bottom: 10%;
|
||||||
/* -webkit-transform: rotate(90deg);
|
-webkit-transform: rotate(90deg);
|
||||||
-moz-transform: rotate(90deg); */
|
-moz-transform: rotate(90deg);
|
||||||
}
|
}
|
||||||
#enemy {
|
#enemy {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 10%;
|
top: 10%;
|
||||||
/* -webkit-transform: rotate(90deg);
|
-webkit-transform: rotate(90deg);
|
||||||
-moz-transform: rotate(90deg); */
|
-moz-transform: rotate(90deg);
|
||||||
border-style: solid; border-width: 1px;
|
border-style: solid; border-width: 1px;
|
||||||
}
|
}
|
||||||
#pewpew {
|
#pewpew {
|
||||||
|
|
16
herzle.js
16
herzle.js
|
@ -27,15 +27,15 @@ function shoot(player_pos) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function isCollided(a, b) {
|
function isCollided(a, b) {
|
||||||
var a_left = parseInt(a.style.left);
|
var a_left = a.getClientRects()[0].left;
|
||||||
var a_right = a_left + a.offsetWidth;
|
var a_right = a.getClientRects()[0].right;
|
||||||
var a_top = parseInt(a.style.top);
|
var a_top = a.getClientRects()[0].top;
|
||||||
var a_bottom = a_top + a.offsetHeight;
|
var a_bottom = a.getClientRects()[0].bottom;
|
||||||
|
|
||||||
var b_left = parseInt(b.style.left);
|
var b_left = b.getClientRects()[0].left;
|
||||||
var b_right = b_left + b.offsetWidth;
|
var b_right = b.getClientRects()[0].right;
|
||||||
var b_top = parseInt(b.style.top);
|
var b_top = b.getClientRects()[0].top;
|
||||||
var b_bottom = b_top + b.offsetHeight;
|
var b_bottom = b.getClientRects()[0].bottom;
|
||||||
|
|
||||||
return !(
|
return !(
|
||||||
(a_left > b_right) ||
|
(a_left > b_right) ||
|
||||||
|
|
Reference in a new issue