Honnêtement, je ne pense pas que vous avez besoin d'un menu modèle pour créer ce. Vous pouvez créer vous-même. Le code est assez simple.
En gros, vous faire une liste non ordonnée. A l'intérieur les éléments de liste, vous intégrez une autre liste non ordonnée. A l'intérieur les éléments des listes intégrées, vous intégrez une table avec des liens dans chaque cellule:
<ul> <!-- make a list -->
<li calss="drop"><a href="#">Top Level Link
<ul> <!-- embed a list -->
<li>
<table cellspacing="0" cellpadding="0"> <!-- embed a table -->
<tr>
<td><a href="#">Link 1</a></td>
<td><a href="#">Link 2</a></td>
</tr>
</table> <!-- close the table -->
</li>
</ul> <!-- close the embedded list -->
</a>
</li>
</ul> <!-- close the main list -->
- <ul> <!-- make a list -->
- <li calss="drop"><a href="#">Top Level Link
- <ul> <!-- embed a list -->
- <li>
-
- <table cellspacing="0" cellpadding="0"> <!-- embed a table -->
- <tr>
- <td><a href="#">Link 1</a></td>
- <td><a href="#">Link 2</a></td>
- </tr>
- </table> <!-- close the table -->
-
- </li>
- </ul> <!-- close the embedded list -->
- </a>
- </li>
- </ul> <!-- close the main list -->
-
Ensuite, vous utilisez des css de fantaisie pour l'effet de survol:
ul li {
list-style: none;
margin: 0 5px; /* spacing things out */
padding: 0;
display: inline; /* ie6 fix */
float: left; /* put the list in a line */
}
ul li.drop ul {
display: none; /* hide the embedded list */
}
ul li.drop:hover ul {
display: block; /* show the embedded list on hover */
position: absolute; /* put it in the right spot */
}
- ul li {
- list-style: none;
- margin: 0 5px; /* spacing things out */
- padding: 0;
- display: inline; /* ie6 fix */
- float: left; /* put the list in a line */
- }
-
- ul li.drop ul {
- display: none; /* hide the embedded list */
- }
-
- ul li.drop:hover ul {
- display: block; /* show the embedded list on hover */
- position: absolute; /* put it in the right spot */
- }
-
Thats à son sujet. Je n'ai pas testé cette manière elle pourrait avoir besoin un peu de peaufinage, mais c'est un menu de navigation de base.
Use your words like arrows to shoot toward your goal.