-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.ts
48 lines (38 loc) · 1.26 KB
/
script.ts
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
let keyInputs = "";
document.addEventListener("keydown", (event) => {
keyInputs += event.key;
if (!keyInputs.toLowerCase().endsWith("exdedede")) return;
document.body.classList.add("rotate");
});
const updateTemperature = (temperature: number) => {
if (!temperature) {
document.querySelector("#status")!.innerHTML = "du goofy nenne einen wert";
}
if (temperature > 10) {
document.querySelector("#status")!.innerHTML = "mat would ride :3";
} else {
document.querySelector("#status")!.innerHTML =
"mat would probably not ride :/";
}
};
const inputElement = document.querySelector("#temptrnum") as HTMLInputElement;
inputElement.addEventListener("input", () =>
updateTemperature(Number(inputElement.value))
);
updateTemperature(0);
// Navbar Importieren
function loadNavbar() {
fetch("../imports/navbar.html")
.then((response) => response.text())
.then((data) => {
document.getElementById("navbar-placeholder").innerHTML = data;
})
.catch((error) => console.error("Error loading the navbar:", error));
}
document.addEventListener("DOMContentLoaded", loadNavbar);
function introduction() {
let Name = "my name is Matteo,";
let age = "im 16 years old.";
let bike = "and i like bike :3";
console.log(Name + age + bike);
}