pongo el codigo
en el html:
Código HTML:
Ver original
en en css:
Código CSS:
Ver original
.cmenu { height: 300px; width: 155px; position: absolute; top: 171px; bottom: 40px; left: -3px; } .menuoculto { height: 82px; width: 28px; background-image: url(../imagenes/Menutrasparanteoculto.png); background-repeat: no-repeat; cursor: pointer; position: absolute; left: 117px; top: 21px; } .menuoculto2 { height: 82px; width: 28px; background-image: url(../imagenes/Menutrasparanteoculto.png); background-repeat: no-repeat; cursor: pointer; position: absolute; left: 117px; top: 21px; } .menu { height: 300px; width: 127px; top: 0px; bottom: 40px; background-image: url(../imagenes/Menutrasparante.png); background-repeat: no-repeat; left: 2px; position: absolute; }
Código Javascript:
Ver original
y en el archivo menu.js con jquery: jQuery('#abrir').click(function() { jQuery('#conmenu').animate({ 'marginLeft' : "-=85px" }); document.getElementById('cerrar').style.display='block'; document.getElementById('abrir').style.display='none'; }); jQuery('#cerrar').click(function() { jQuery('#conmenu').animate({ 'marginLeft' : "+=85px" }); document.getElementById('abrir').style.display='none'; document.getElementById('cerrar').style.display='block'; });
por mas que lo intento no consigo que funcione haber sime podeis hechar una mano