Menu déroulant en JavaScript
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<script type="text/javascript" src="ScrollMenu.js"></script>
<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Randy Bennett (rbennett@thezone.net) -->
<!-- Web Site: http://home.thezone.net/~rbennett/utility/javahead.htm -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
function buildMenu() {
speed=35;
topdistance=100;
items=6;
y=-50;
ob=1;
if (navigator.appName == "Netscape") {
v=".top=",dS="document.",sD="";
}
else {
v=".pixelTop=",dS="",sD=".style";
}
}
function scrollItems() {
if (ob<items+1) {
objectX="object"+ob; y+=10; eval(dS + objectX + sD + v + y);
if (y<topdistance) setTimeout("scrollItems()",speed);
else y=-50, topdistance+=40, ob+=1, setTimeout("scrollItems()",speed);
}
}
// End -->
</SCRIPT>
</head>
<body onLoad="buildMenu(), scrollItems();">
<a href="pic.html">hello</a>
<a href="pic.html">Link 1!</a>
<a href="pic.html">Link 1!</a>
<a href="pic.html">Link 1!</a>
<a href="pic.html">Link 1!</a>
<a href="pic.html">Link 1!</a>
<div id="object1" style="position:absolute; visibility:show; left:25px; top:-50px; z-index:2">
<table border=1 width=150 bgcolor=80FFFF>
<td>
<a href="pic.html">Link 1!</a>
</td>
</table>
</div>
<div id="object2" style="position:absolute; visibility:show; left:25px; top:-50px; z-index:2">
<table border=1 width=150 bgcolor=80FFFF>
<td>
<a href="pic.html">Link 2!</a>
</td>
</table>
</div>
<div id="object3" style="position:absolute; visibility:show; left:25px; top:-50px; z-index:2">
<table border=1 width=150 bgcolor=80FFFF>
<td>
<a href="pic.html">Link 3!</a>
</td>
</table>
</div>
<div id="object4" style="position:absolute; visibility:show; left:25px; top:-50px; z-index:2">
<table border=1 width=150 bgcolor=80FFFF>
<td>
<a href="pic.html">Link 4!</a>
</td>
</table>
</div>
<div id="object5" style="position:absolute; visibility:show; left:25px; top:-50px; z-index:2">
<table border=1 width=150 bgcolor=80FFFF>
<td>
<a href="pic.html">Link 5!</a>
</td>
</table>
</div>
<div id="object6" style="position:absolute; visibility:show; left:25px; top:-50px; z-index:2">
<table border=1 width=150 bgcolor=80FFFF>
<td>
<a href="pic.html">Link 6!</a>
</td>
</table>
</div>
</body>
</html>
Toute aide s'il vous plaît?? :)
Merci tellement C.
répondre #1
Remplacez ce code scrollItems()
function scrollItems() {
if (ob<items+1) {
objectX="object"+ob; y+=10;
document.getElementById(objectX).style.top = y + "px"
if (y<topdistance) setTimeout("scrollItems()",speed);
else y=-50, topdistance+=40, ob+=1, setTimeout("scrollItems()",speed);
}
}
Voir s'il vous plaît si il fonctionne bien avec vous
répondre #2
Il est bon de changer au code de Kronass. J'ai effectivement eu le code fonctionne aussi bien, mais il/elle me parie à elle.
Vous devez également noter, que votre body onload n'ait pas une virgule, mais un point-virgule.
par exemple, vous avez :
<body onLoad="buildMenu(), scrollItems();">
Qui devrait être
<body onLoad="buildMenu(); scrollItems();">
Dans votre style HTML, vous devriez avoir
visibility: visible;
PAS
visibility: show;
0 commentaires:
Enregistrer un commentaire