Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
<img src="webcambildjpg">
<a href="javascript: popup('webcambild.jpg',300,200)">hier klicken</a>
function popup(Picture,Breit,Hoch)
{
xsize = Breit+55;// Zusatz für Rand rechts und links
ysize = Hoch+75; //Zusatz für Rand oben und unten - damit Button angezeit werden kann
ScreenWidth = screen.width;
ScreenHeight = screen.height;
xpos = (ScreenWidth/2)-(xsize/2);
ypos = (ScreenHeight/2)-(ysize/2);
NewWindow=window.open('','Picture','height='+ysize+',width='+xsize+',scrollbars=no,resizable=no,top='+ypos+',left='+xpos);
NewWindow.document.write ('<html><head><title>WEBCAM');
NewWindow.document.write ('</title></head>');
NewWindow.document.write ('<body onload="focus();">');
NewWindow.document.write ('<table align=center><tr>');
NewWindow.document.write ('<td align=center valign=top>');
NewWindow.document.write ('<table border=0 cellpadding=0 cellspacing=1><tr><td align=center>');
NewWindow.document.write ('<img src=');
NewWindow.document.write (Picture);
NewWindow.document.write ('>');
NewWindow.document.write ('</tr></table>');
NewWindow.document.write ('</td></tr><tr>');
NewWindow.document.write ('<td align=center valign=bottom>');
NewWindow.document.write ('<br><center><form><input type=button value="FENSTER SCHLIESSEN" style="font-family: Verdana; font-size: 10px" onClick="self.close()">');
NewWindow.document.write ('</td></tr></table>');
NewWindow.document.write ('</form></body></html>');
NewWindow.document.close();
NewWindow.resizeTo(xsize+75 ,ysize+35);
NewWindow.moveTo(xpos,ypos);
}