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.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<script type="text/javascript">
<!--
// Grafiktausch
function swapImage(imgName,swapImg)
{
document.images[imgName].src=swapImg;
}
//-->
</script>
</head>
<body>
<iframe src="home.htm" frameborder="1" height="300" width="600"></iframe>
<div id="imageBox">
<img src="pic00.jpg" alt="" name="start">
</div>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
</head>
<body>
<a href="#" onmouseover="parent.top.swapImage('start','pic01.jpg')" onmouseout="parent.top.swapImage('start','pic00.jpg')">Grafiktausch</a>
</body>
</html>