C
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.
<ul>
<li><a href="#">Link a1</a></li>
<li><a href="#">Link a2</a></li>
<li><a href="#">Link a3</a></li>
<li><strong>Ausklappen</strong>
<ul>
<li><a href="#">Link b1</a></li>
<li><a href="#">Link b2</a></li>
<li><a href="#">Link b3</a></li>
<li><a href="#">Link b4</a></li>
<li><a href="#">Link b5</a></li>
</ul>
</li>
<li><a href="#">Link a4</a></li>
</ul>
ul li li a {
opacity:0.5;
-moz-opacity:0.5;
filter:alpha(opacity=50);
width: 8em;
border-right: none;
border-top: 1px solid #ffffff;
}
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("men1");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}
window.onload=startList;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Drobdown</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="men1.css" >
<!--[if lt IE 7]>
<script type="text/javascript" src="iehover.js"></script>
<![endif]-->
</head>
<body>
......
</body>
</html>