Skip to content

Instantly share code, notes, and snippets.

@littlefoxhelper
Forked from mpakus/gist:2585435
Last active August 29, 2015 14:18
Show Gist options
  • Select an option

  • Save littlefoxhelper/b1c6c464e4f38b825acd to your computer and use it in GitHub Desktop.

Select an option

Save littlefoxhelper/b1c6c464e4f38b825acd to your computer and use it in GitHub Desktop.
<html>
<head>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<style type="text/css">
body{
margin:0;
padding:0;
}
.menu{
position: absolute;
width: 600px;
height: 180px;
background: gray;
top: -180px;
border-bottom: 10px solid red;
}
</style>
<script type="text/javascript">
$(document).ready(function () {
M = $(".menu");
M.css( {left: $('body').width()/2 - 300 + "px"} );
M.toggle(
function() {
M.animate( {top:"0px"} );
},
function() {
M.animate( {top:"-180px"} );
}
);
});
</script>
</head>
<body>
<div class="menu"></div>
</bodY>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment