ICI header("Location: http://www.mytesting.fr ");

LE MENU DEROULANT AVEC PAVES HORIZONTAUX.

par André MARINI 4 Mai 2016, 07:00 sites et blogs

Ce code fait intervenir du html, en bleu, et du CSS en marron, encadré par les balises <style> </style>

Les possibilités sont importantes puisque on peut changer la couleur des pavés et des cazractères, les tailles et l'on peut ajouter les liens dans le pavé de présentation.

<a href="#">LA PÊCHE</a>

Ici, il suffit de remplacer le signe # par le lien vers le site.

 

CODE

<ul id="menu-demo2"><style>
#menu-demo2, #menu-demo2 ul{
padding:0;
margin:0;
list-style:none;
text-align:center;
}
#menu-demo2 li{
display:inline-block;
position:relative;
border-radius:8px 8px 0 0;
}
#menu-demo2 ul li{
display:inherit;
border-radius:0;
}
#menu-demo2 ul li:hover{
border-radius:0;
}
#menu-demo2 ul li:last-child{
border-radius:0 0 8px 8px;
}
#menu-demo2 ul{
position:absolute;
z-index: 1000;
max-height:0;
left: 0;
right: 0;
overflow:hidden;
-moz-transition: .8s all .3s;
-webkit-transition: .8s all .3s;
transition: .8s all .3s;
}
#menu-demo2 li:hover ul{
max-height:15em;
}
/* background des liens menus */
#menu-demo2 li:first-child{
background-color: #65537A;
background-image:-webkit-linear-gradient(top, #65537A 0%, #2A2333 100%);
background-image:linear-gradient(to bottom, #65537A 0%, #2A2333 100%);
}
#menu-demo2 li:nth-child(2){
background-color: #729EBF;
background-image: -webkit-linear-gradient(top, #729EBF 0%, #333A40 100%);
background-image:linear-gradient(to bottom, #729EBF 0%, #333A40 100%);
}
#menu-demo2 li:nth-child(3){
background-color: #F6AD1A;
background-image:-webkit-linear-gradient(top, #F6AD1A 0%, #9F391A 100%);
background-image:linear-gradient(to bottom, #F6AD1A 0%, #9F391A 100%);
}
#menu-demo2 li:last-child{
background-color: #CFFF6A;
background-image:-webkit-linear-gradient(top, #CFFF6A 0%, #677F35 100%);
background-image:linear-gradient(to bottom, #CFFF6A 0%, #677F35 100%);
}
/* background des liens sous menus */
#menu-demo2 li:first-child li{
background:#2A2333;
}
#menu-demo2 li:nth-child(2) li{
background:#333A40;
}
#menu-demo2 li:nth-child(3) li{
background:#9F391A;
}
#menu-demo2 li:last-child li{
background:#677F35;
}
/* background des liens menus et sous menus au survol */
#menu-demo2 li:first-child:hover, #menu-demo2 li:first-child li:hover{
background:#65537A;
}
#menu-demo2 li:nth-child(2):hover, #menu-demo2 li:nth-child(2) li:hover{
background:#729EBF;
}
#menu-demo2 li:nth-child(3):hover, #menu-demo2 li:nth-child(3) li:hover{
background:#F6AD1A;
}
#menu-demo2 li:last-child:hover, #menu-demo2 li:last-child li:hover{
background:#CFFF6A;
}
/* les a href */
#menu-demo2 a{
text-decoration:none;
display:block;
padding:8px 32px;
color:#fff;
font-family:arial;
}
#menu-demo2 ul a{
padding:8px 0;
}
#menu-demo2 li:hover li a{
color:#fff;
text-transform:inherit;
}
#menu-demo2 li:hover a, #menu-demo2 li li:hover a{
color:#000;
}</style>

	<li><a href="#">LA PÊCHE</a>
		<ul>
			<li><a href="http://www.pecheurdumorin.fr/2016/01/le-brochet-au-poisson-mort.html">LE BROCHET</a></li>
			<li><a href="http://www.pecheurdumorin.fr/2015/09/montage-pour-la-peche-du-sandre-voici-un-complement-interessant-donne-par-jean-jacques-c.html">LE SANDRE</a></li>
			<li><a href="http://www.pecheurdumorin.fr/2015/12/le-silure-en-question.html">LE SILURE</a></li>
			
		</ul>
	</li>
	<li><a href="#">LA NATURE</a>
		<ul>
			<li><a href="http://www.naturepourvous.fr/2016/04/chevreuil-de-nuit.html">LE CHEVREUIL</a></li>
			<li><a href="http://www.naturepourvous.fr/2016/04/le-pinson-des-arbres.html">LE PINSON</a></li>
			<li><a href="http://www.naturepourvous.fr/2016/04/la-fauvette-a-tete-noire.html">LA FAUVETTE</a></li>
			
		</ul>
	</li>	
	<li><a href="#">L'INFORMATIQUE</a>
		<ul>
			<li><a href="http://www.mytesting.fr/2016/02/comment-creer-un-moteur-de-recherche-avec-google.html">MOTEUR DE RECHERCHE</a></li>
			<li><a href="http://www.mytesting.fr/2016/02/faire-disparaitre-une-image-au-passage-de-la-souris-pour-qu-elle-reapparaisse-ensuite.html">IMAGE</a></li>
			<li><a href="http://www.mytesting.fr/2016/01/comment-encadrer-un-titre-ou-un-texte-en-pointille.html">TITRE</a></li>
			
		</ul>
	</li>
</ul>

RESULTAT

Haut de page