1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| <html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Document sans nom</title>
<script language="javascript">
function SMenu1(){
document.getElementById('SMenu').style.visibility = 'visible';
}
function SMenu2(){
document.getElementById('SMenu').style.visibility = 'hidden';
}
function SMenu3(x){
document.getElementById('Menu').textContent = x;
}
</script>
</head>
<body>
<div id="Menu" style="position:absolute;top:10px;left:50px; background-color:#FFFF66; width:260px; height:30px;" onmouseover="Javascript:SMenu1();">
Toutes les catégories
<div id="SMenu" style="visibility:hidden; position:relative;top:10px;left:0px; background-color:#FFFFCC; width:260px; height:330px;" onmouseout="Javascript:SMenu2();">
<a href="#" onclick="Javascript:SMenu3('Animaux'); return false;">Animaux</a><br />
<a href="#" onclick="Javascript:SMenu3('Art et Antiquités'); return false;">Art et Antiquités</a><br />
<a href="#" onclick="Javascript:SMenu3('Auto, Moto, Bateau et pièces'); return false;">Auto, Moto, Bateau et pièces</a>
</div>
</div>
</body>
</html> |