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.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<script type="text/javascript" language="JavaScript1.2">
document.onkeyup = go
function go()
{
var wohin = document.forms.eingabe.ausgabe.value
if(window.event.keyCode == 13)
{
parent.content.location.href = wohin
return false
}
}
</script>
</head>
<body>
<form name="eingabe">
<input name="ausgabe" style="WIDTH: 577px; HEIGHT: 22px" size=74>
</form>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<body>
</body>
</html>
<!-- frames -->
<frameset rows="29%,*">
<frame name="top" src="top.html" marginwidth="10" marginheight="10" scrolling="auto" frameborder="no">
<frame name="content" src="content.html" marginwidth="10" marginheight="10" scrolling="auto" frameborder="no">
</frameset>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<script type="text/javascript" language="JavaScript1.2">
// document.onkeyup = schreibe
document.onkeyup = checkKey;
document.onkeypress = checkKey;
document.onkeydown = checkKey;
function checkKey()
{
if(event.keyCode=='13')
{
ziel = document.forms.eingabe.ausgabe.value;
parent.content.location.href = "http://" + ziel
return false;
}
}
</script>
</head>
<body onSubmit="check()">
<form name="eingabe">
<input name="ausgabe" type="text" style="WIDTH: 577px; HEIGHT: 22px" size=74 onSubmit="check()">
<input type="hidden" name="fake" value="">
</form>
</body>
</html>
<!-- frames -->
<base target="RechtesFenster">
<frameset rows="29%,*">
<frame name="top" src="top.html" marginwidth="10" marginheight="10" scrolling="auto" frameborder="no">
<frame name="content" src="content.html" marginwidth="10" marginheight="10" scrolling="auto" frameborder="no">
</frameset>