This repository has been archived on 2022-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
GeometryDash3D/js/main.js
2022-12-02 22:46:22 +01:00

69 lines
1.7 KiB
JavaScript

import { runGame } from "./Game.js";
window.addEventListener("load", () => main());
/**
* Load the menu
*/
const main = () => {
document.body.style = "background-color: black;";
let titleGame = document.createElement("p");
titleGame.textContent = "GeometryDash 3D";
titleGame.style =
"-webkit-animation-name: animTitle; \
-webkit-animation-iteration-count: infinite; \
-webkit-animation-duration: 2s; \
background: none; \
color: white; \
font-size: 400%;";
document.body.appendChild(titleGame);
let normalGame = document.createElement("button");
normalGame.textContent = "Partie normale";
normalGame.style =
"margin-top: 20%; \
border: none; \
background: none; \
color: white; \
font-size: 400%; \
cursor: pointer;";
document.body.appendChild(normalGame);
let demoGame = document.createElement("button");
demoGame.textContent = "Partie démo";
demoGame.style =
"position: absolute; \
top: 40%; \
left: 37%; \
border: none; \
background: none; \
color: white; \
font-size: 400%; \
cursor: pointer;";
document.body.appendChild(demoGame);
const removeMenu = () => {
document.body.removeChild(titleGame);
document.body.removeChild(normalGame);
document.body.removeChild(demoGame);
};
normalGame.addEventListener(
"click",
() => {
removeMenu();
runGame(false);
},
{ once: true }
);
demoGame.addEventListener(
"click",
() => {
removeMenu();
runGame(true);
},
{ once: true }
);
};