2024-08-22 09:59:10 +02:00
|
|
|
const rechnungen = document.querySelector("#rechnungen");
|
|
|
|
let rechnungenTop = 1;
|
|
|
|
|
|
|
|
const rechenzeichen = ['+','-','*',':'];
|
2024-08-22 15:20:37 +02:00
|
|
|
const rechnung1Text = document.querySelector("#rechnung1Text");
|
|
|
|
const rechnung2Text = document.querySelector("#rechnung2Text");
|
|
|
|
|
2024-08-29 08:19:38 +02:00
|
|
|
|
|
|
|
//RechnungenSpawn Parameter
|
2024-08-27 11:11:37 +02:00
|
|
|
const maxZahl = 100;
|
|
|
|
const maxMal = 11;
|
|
|
|
const maxDurch = 5;
|
|
|
|
|
2024-08-29 08:35:43 +02:00
|
|
|
const fuchsZahl = document.querySelector("#fuchsZahl");
|
|
|
|
|
|
|
|
|
2024-08-27 11:11:37 +02:00
|
|
|
|
2024-08-22 15:20:37 +02:00
|
|
|
//rechnung2Text.innerText = "hallo";
|
2024-08-22 09:59:10 +02:00
|
|
|
|
|
|
|
rechnungen.style.top = rechnungenTop + "px";
|
2024-08-27 11:11:37 +02:00
|
|
|
rechnungenSpawn(maxZahl,maxMal,maxDurch);
|
2024-08-22 09:59:10 +02:00
|
|
|
function rechnungMoven(speed){
|
|
|
|
let nextTop = rechnungenTop + 10 * speed;
|
|
|
|
rechnungen.style.top = nextTop + "px";
|
|
|
|
if(nextTop > 800){
|
|
|
|
rechnungen.style.top = "1px";
|
|
|
|
rechnungenTop = 1;
|
2024-08-27 11:11:37 +02:00
|
|
|
rechnungenSpawn(maxZahl,maxMal,maxDurch);
|
2024-08-22 09:59:10 +02:00
|
|
|
}else{
|
|
|
|
rechnungenTop = nextTop;
|
|
|
|
}
|
|
|
|
}
|
2024-08-27 11:11:37 +02:00
|
|
|
function rechnungenSpawn(maxzahl,maxMal,maxDurch){
|
2024-08-22 15:20:37 +02:00
|
|
|
let index = Math.floor(Math.random()*rechenzeichen.length);
|
2024-08-27 11:11:37 +02:00
|
|
|
let randomZahl = 0;
|
|
|
|
if(rechenzeichen[index] == '+' || rechenzeichen[index] == '-'){
|
|
|
|
randomZahl = Math.floor(Math.random()*maxzahl);
|
|
|
|
}
|
|
|
|
if(rechenzeichen[index] == '*'){
|
|
|
|
randomZahl = Math.floor(Math.random()*maxMal);
|
|
|
|
}
|
|
|
|
if(rechenzeichen[index] == ':'){
|
|
|
|
randomZahl = Math.floor(Math.random()*maxDurch) + 1;
|
|
|
|
}
|
2024-08-22 15:20:37 +02:00
|
|
|
rechnung1Text.innerText = rechenzeichen[index] + randomZahl.toString();
|
2024-08-27 11:11:37 +02:00
|
|
|
|
2024-08-22 15:20:37 +02:00
|
|
|
index = Math.floor(Math.random()*rechenzeichen.length);
|
2024-08-27 11:11:37 +02:00
|
|
|
if(rechenzeichen[index] == '+' || rechenzeichen[index] == '-'){
|
|
|
|
randomZahl = Math.floor(Math.random()*maxzahl);
|
|
|
|
}
|
|
|
|
if(rechenzeichen[index] == '*'){
|
|
|
|
randomZahl = Math.floor(Math.random()*maxMal);
|
|
|
|
}
|
|
|
|
if(rechenzeichen[index] == ':'){
|
|
|
|
randomZahl = Math.floor(Math.random()*maxDurch) + 1;
|
|
|
|
}
|
2024-08-22 15:20:37 +02:00
|
|
|
rechnung2Text.innerText = rechenzeichen[index] + randomZahl.toString();
|
2024-08-22 09:59:10 +02:00
|
|
|
}
|
2024-08-29 08:35:43 +02:00
|
|
|
function ergebnis(zahl1,zahl2,rechenzeichen){
|
|
|
|
if(rechenzeichen == '+'){
|
|
|
|
return zahl1 + zahl2;
|
|
|
|
}
|
|
|
|
if(rechenzeichen == '-'){
|
|
|
|
return zahl1 - zahl2;
|
|
|
|
}
|
|
|
|
if(rechenzeichen == '*'){
|
|
|
|
return zahl1 * zahl2;
|
|
|
|
}
|
|
|
|
if(rechenzeichen == ':'){
|
|
|
|
return zahl1 / zahl2;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2024-08-22 09:59:10 +02:00
|
|
|
setInterval(()=>{
|
2024-08-27 10:22:55 +02:00
|
|
|
rechnungMoven(0.2);
|
|
|
|
}, 10);
|