Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
x = parseInt(y/100*maxzahl,10) + 1
...
if (x == '1')
self.location='index1.html'
if (x == '2')
self.location='index2.html'
<script type="text/javascript">
<!--
//Anzahl der Startseiten ( index1.html, index2.html etc. )
var anzahl=3;
//generiert eine Zufallszahl von 1 bis zur Anzahl Startseiten
var zahl=Math.round( Math.random() * ( anzahl - 1 ) + 1 );
//Leitet zur neuen Startseite weiter
self.location="index" + zahl + ".html";
//-->
</script>