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.
<span style="background:url(loading.gif);"><img src="grosses_bild.jpg" alt="ich brauche lange zum laden" /></span>
<html>
<head>
<title></title>
<style type="text/css">
<!--
body, html{ height: 100%;}
.loadImg{ position: absolute;
left: 50%;
top: 50%;
margin: -8px 0 0 -8px;
display: none;
z-index: 99;}
//-->
</style>
<script type="text/javascript">
<!--
function loadImage(){
// Bild einblenden
document.getElementById("imgID").style.display = "inline";
// Neues Bildobjekt erstellen
var objImg = new Image();
objImg.src = "../bilder/farben.jpg";
// onload-Event nutzen um Ladegrafik auszublenden und das gewünschte Bild einzuhängen
objImg.onload = function(){
document.getElementById("imgID").style.display = "none";
document.getElementById("imgContainer").appendChild(this);
}
}
//-->
</script>
</head>
<body>
<img class="loadImg" id="imgID" src="../bilder/ajax-loader_01_trans.gif" width="16" height="16" border="0" alt="">
<button onclick="loadImage();">Bild laden</button>
<div id="imgContainer"></div>
</body>
</html>