Búsqueda en el Foro:
Buscar


Autor Mensaje
Mensaje08-10-2008, 17:11 (UTC)    
Título del mensaje: [Css]Links del menu con breve descripcion

Miren con este codigo pueden tener un menu con descripcion del link al que vas ingresar

Se divide de la siguiente forma

1 Parte

Cita:
<style type="text/css">
<!--
#coolmenu{
border: 1px solid black;
width: 170px;
background-color: #E6E6E6;
}
#coolmenu a{
font: bold 13px Verdana;
padding: 2px;
padding-left: 4px;
display: block;
width: 100%;
color: black;
text-decoration: none;
border-bottom: 1px solid black;

}
html>body #coolmenu a{
width: auto;
}
#coolmenu a:hover{
background-color: black;
color: white;
}
#tabledescription{
width: 100%;
height: 3em;
padding: 2px;
filter:alpha(opacity=0);
-moz-opacity:0;
}
-->
</style>

<script type="text/javascript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Cool CSS Menu by JavaScriptKit.com -->
<!-- Begin
var baseopacity=0
function showtext(thetext){
if (!document.getElementById)
return
textcontainerobj=document.getElementById("tabledescription")
browserdetect=textcontainerobj.filters? "ie" : typeof textcontainerobj.style.MozOpacity=="string"? "mozilla" : ""
instantset(baseopacity)
document.getElementById("tabledescription").innerHTML=thetext
highlighting=setInterval("gradualfade(textcontainerobj)",50)
}
function hidetext(){
cleartimer()
instantset(baseopacity)
}
function instantset(degree){
if (browserdetect=="mozilla")
textcontainerobj.style.MozOpacity=degree/100
else if (browserdetect=="ie")
textcontainerobj.filters.alpha.opacity=degree
else if (document.getElementById && baseopacity==0)
document.getElementById("tabledescription").innerHTML=""
}

function cleartimer(){
if (window.highlighting) clearInterval(highlighting)
}
function gradualfade(cur2){
if (browserdetect=="mozilla" && cur2.style.MozOpacity<1)
cur2.style.MozOpacity=Math.min(parseFloat(cur2.style.MozOpacity)+0.2, 0.99)
else if (browserdetect=="ie" && cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=20
else if (window.highlighting)
clearInterval(highlighting)
}
// End -->
</script>



Nota: Modifica lo que esta en rojo a tus gustos

Paso 2 :Agrega este codigo por encima de la pagina


Cita:
<div id="coolmenu">

<a href="URL del link" onMouseover="showtext('Comentario del link')" onMouseout="hidetext()">Nombre del link</a>

<a href="URL del link" onMouseover="showtext('Comentario del link')" onMouseout="hidetext()">Nombre del link</a>

<a href="URL del link" onMouseover="showtext('Comentario del link')" onMouseout="hidetext()">Nombre del link</a>

<a href="http://forums.webdeveloper.com/index.php?s=" onMouseover="showtext('Web development forums')" onMouseout="hidetext()">Web Developer Forums</a>

<a href="URL del link" onMouseover="showtext('Comentario del link')" onMouseout="hidetext()">Nombre del link</a>

<div id="tabledescription"></div>

</div>




Espero que les halla gustado
______________
Codigos gratis
Plantillas Gratis

Entra ami web y consigue lo mejor en ayuda
.::Tutores web::.
Mostrar mensajes anteriores:   


Powered by phpBB © 2001, 2005 phpBB Group