Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<script>
function change() {
if(unten.className=="pos1")unten.className="pos2";
else unten.className="pos1";
}
</script>
<html>
<div onmouseover=change()>
[url="#"]link[/url]
</div>
<div class=pos1 id=unten onmouseout=change()>
[url="#"]link2[/url]
[url="#"]link3[/url]
</div>
</html>
<style>
.pos1{visibility:hidden;}
.pos2{visibility:normal;color:red;}
</style>