Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

DezFanfara

como fazer menu?

Recommended Posts

Bem é até que simples, fiz um html demonstrando qualquer dúvida você pode postar aqui

 

Código

 

ASP [/tr][tr]

<html>

<head>

<title>Page Title</title>

<style>

div{

width:300;

border:1px solid black;

position:absolute;

}

</style>

 

<script>

 

function move(){

var ob = document.getElementById("menu");

var pos = parseInt(ob.style.left);

if (pos<10) {

ob.style.left=pos+15;

}else {

clearInterval(t);

}

}

function moveback(){

var ob = document.getElementById("menu");

var pos = parseInt(ob.style.left);

if (pos>-280) {

ob.style.left=pos-15;

}else {

clearInterval(t);

}

}

 

function mostra(){t = setInterval("move()",50);}

function esconde(){t = setInterval("moveback()",50);}

 

function mostra_menu(){

if (parseInt(document.getElementById("menu").style.left)==-280){

mostra();

}else{

esconde();

}

}

 

</script>

 

</head>

<body bgcolor="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">

 

<div id="menu" style="left:-280; cursor:hand">

<span style="float:right" onclick="mostra_menu()">

X

</span>

teste teste teste teste <br>

teste teste teste teste <br>

teste teste teste teste <br>

teste teste teste teste <br>

teste teste teste teste <br>

teste teste teste teste <br>

teste teste teste teste <br>

</div>

 

</body>

</html>

[/tr]

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.