<!DOCTYPE html>
<html>
<head>
<title>2K code</title>
<meta charset="utf-8" />
<meta name="author" content="2K code" />
<meta name="robots" content="noindex" />
<meta name="viewport" content="width=device-width" />
<style type="text/css">
* {
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
transition: all 0.4s;
}
body {
font: normal 16px/18px sans-serif;
color: #000000;
}
#menu {
top: 0px;
left: 0px;
width: 0px;
height: 100%;
position: fixed;
background: #000000;
overflow-x: hidden;
padding-top: 48px;
z-index: 1;
}
#menu a {
padding: 24px;
color: #848484;
display: block;
font-size: 24px;
text-decoration: none;
}
#menu a:hover, #menu a:focus {
background: #444DDD;
color: #FFFFFF;
}
</style>
<script type="text/javascript">
function open_() {
document.getElementById("menu").style.width="240px";
}
function close_() {
document.getElementById("menu").style.width="0px";
}
</script>
</head>
<body>
<span style="cursor:pointer" onclick="open_()">menu</span>
<div id="menu" onclick="close_()">
<a href="#">Inicio</a>
<a href="#">Equipo</a>
<a href="#">Galería</a>
<a href="#">Contacto</a>
</div>
</body>
</html>