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>
<style type="text/css">
.tool{ background-color:#efefef;
position:absolute;
z-index:2;
padding:5px;
border:1px solid black;
width:200px;
display:none;
left:15px;
}
</style>
<script type="text/javascript">
function show(x){
document.getElementById(x).style.display = 'block';
}
function hide(x){
document.getElementById(x).style.display = 'none';
}
</script>
</head>
<body>
1<br>
2<br>
3<br>
<a href="http://www.tutorials.de" onmouseover="show('1')" onmouseout="hide('1')">Dein Link 1</a>
<div id="1" class="tool">Dein Text zu Link 1</div><br>
4<br>
5<br>
6<br>
<a href="http://www.tutorials.de" onmouseover="show('2')" onmouseout="hide('2')">Dein Link 2</a>
<div id="2" class="tool">Dein Text zu Link 2</div><br>
</body>
</html>