Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<script type="text/javascript" language="JavaScript">
<!--
today=new Date();
jran=today.getTime();
[b]var anzahl = 7; // Anzahl der Bilder[/b]
var random_number="";
var image="";
var text_color="";
ia=9301;
ic=49297;
im=233280;
jran = (jran*ia+ic) % im;
random_number = Math.ceil( (jran/(im*1.0)) * anzahl);
// läd ein Image abhängig von der Zufallszahl
if (random_number==1) {
text_color="000000";
image="bild02a.jpg";
text="Bild 01"
}
if (random_number==2) {
text_color="#FF0000";
image="bild02b.jpg";
text="Bild 02"
}
if (random_number==3) {
text_color="#00BF00";
image="bild02c.jpg";
text="Bild 03"
}
if (random_number==4) {
text_color="#0090E0";
image="bild02d.jpg";
text="Bild 04"
}
if (random_number==5) {
text_color="#BF0000";
image="bild02a.jpg";
text="Bild 05"
}
if (random_number==6) {
text_color="#AF00FF";
image="bild02b.jpg";
text="Bild 06"
}
if (random_number==7) {
text_color="#00AFAF";
image="bild02c.jpg";
text="Bild 07"
}
//lässt sich weiter fortsetzen
function zufallsbild() {
document.write("[img]" + image + "[/img]
")
document.write("<font color=#" + text_color +"'>" + text + "</font>
")
return
}
// -->
</script>
<script language="JavaScript">
<!--
zufallsbild();
//-->
</script>