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.
<html>
<head>
<title>www.tutorials.de</title>
<meta name="author" content="Quaese">
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
<!--
window.onload = function(){
testIt("div_id");
}
function testIt(strId){
var objElem = document.getElementById(strId);
objElem.style.backgroundImage = (parseInt(objElem.style.width)<300)? "url(bild1.gif)" : "url(bild2.gif)";
}
//-->
</script>
</head>
<body>
<div id="div_id" style="width: 400px; height: 200px; border: 1px solid #000;"> </div>
</body>
</html>