Created
July 31, 2024 11:53
-
-
Save tarasowski/57af34fb5bc69792d96463a71be28e4b to your computer and use it in GitHub Desktop.
logic-game.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// script.js | |
document.addEventListener("DOMContentLoaded", function() { | |
var character = document.getElementById("character"); | |
var container = document.getElementById("container"); | |
// Aktuelle Position des Charakters | |
var position = { | |
left: 0, | |
top: 0 | |
}; | |
// Schrittgröße für die Bewegung | |
var stepSize = 10; | |
// Maximal zulässige Positionen innerhalb des Containers | |
var maxLeft = container.offsetWidth - character.offsetWidth; | |
var maxTop = container.offsetHeight - character.offsetHeight; | |
// Event-Listener für Tastatureingaben | |
document.addEventListener("keydown", function(event) { | |
switch(event.key) { | |
case "ArrowLeft": | |
if (position.left > 0) { | |
position.left -= stepSize; | |
} | |
break; | |
case "ArrowRight": | |
if (position.left < maxLeft) { | |
position.left += stepSize; | |
} | |
break; | |
case "ArrowUp": | |
if (position.top > 0) { | |
position.top -= stepSize; | |
} | |
break; | |
case "ArrowDown": | |
if (position.top < maxTop) { | |
position.top += stepSize; | |
} | |
break; | |
} | |
// Aktualisiere die Position des Charakters | |
character.style.transform = `translate(${position.left}px, ${position.top}px)`; | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment