Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/04/2010, 21:18
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años, 7 meses
Puntos: 834
Respuesta: Menu flash a javascript

Podés empezar con algo así y luego seguir trabajándolo:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head>
<
meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<
title>Documento sin t&#237;tulo</title>
<script type="text/javascript">
var 
elasticidad 0.8,velocidad 0.6,escala 99,xp=.01,yp=.01;
function 
e(){
    var 
y=-(parseInt(this.style.height)*escala/100)+escala;
        
yp yp*elasticidad+y*velocidad;
        
this.style.height=parseInt(this.style.height)/100*yp+'px';
        var 
x=-(parseInt(this.style.width)*escala/100)+escala;
        
xp xp*elasticidad+x*velocidad;
        
this.style.width=parseInt(this.style.width)*xp/100+'px';;
}
onload=function(){
        
setInterval(function(){e.call(document.getElementById('pp'));},30);
}
</script>
</head>

<body>
<a id="pp" onmouseover="escala=115" onmouseout="escala=99" style="display:block; background-color:#333; width:90px; height:50px" href="asas"></a>
</body>
</html>