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.
<script language="JavaScript1.2" type="text/javascript">
function popup(breit,hoch){
window.open('','Name','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto',resizable=1,left=0,top=0,width=' + breit + ',height=' + hoch);
}
</script>
onclick="popup(200,100)"
<?
function zeigebild($bildname)
{
$bildinfo = getimagessize('../pics/$bildname');
$bildhoehe = $bildinfo[1];
$bildbreite = $bildinfo[0];
echo "<script type=\"text/javascript\">
<!--
window.open(\"zeige_bild.php?bild=".$bildname."\",\"Bild\",\"width=".$bildbreite.",height=".$bildhöhe.",left=0,top=0\");
self.focus();
//-->
</script>";
}
?>
<script language="JavaScript" type="text/javascript">
function openWindow(bild) {
var HTMLstr = '<HTML><HEAD><TITLE>© Holger Krupp (holgerkrupp.de) </TITLE>';
HTMLstr += '<scr'+'ipt> var Hoehe,Breite; var bild = new Image(); bild.src = '+bild+'; bild.height = Hoehe; bild.width = Breite; w=screen.Width; h=screen.Height; if (Hoehe < h) {h = Hoehe;} if (Breite < w) {w = Breite;} h=h-25; self.resizeTo(w,h); </scr'+'ipt></HEAD>';
HTMLstr += '\n<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LEFTMARGIN=10 TOPMARGIN=10 MARGINWIDTH=10 MARGINHEIGHT=10>';
HTMLstr += '\n<a href="javascript:self.close();">Fenster schliessen</a>';
HTMLstr += '\n<img src='+bild+'><p>';
HTMLstr += '\n</BODY></HTML>';
var testWindow = window.open('','testWindow','toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,left=10,top=20,width=100,height=100');
with (testWindow.document) {
open();
write(HTMLstr);
close();
}
}
</script>