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.
<body onmouseover="window.status=' Dein Text '; return true;">
<script language="JavaScript">
<!--
var yourwords=" Dein Text ";
var speed=150; var control=1;
function flash(){if (control==1){window.status=yourwords;control=0}
else{window.status="";control=1}setTimeout("flash();",speed)};
flash();
//-->
</script>
<script language="JavaScript">
var text=" Dein Text "
var speed=10
var x=0
function bb(){
if(x <= text.length){
var a=text.substring(0,x)
window.status=a+"_"
}
else{
window.status=text
}
if(x==text.length+40){
x=0
}else{
x++
}
setTimeout("bb()",speed)
}
bb();
</script>