Skip to content

Instantly share code, notes, and snippets.

@seabrizz
Last active September 22, 2016 08:49
Show Gist options
  • Save seabrizz/cd0ee315ab0e2233733a06f28fc5763c to your computer and use it in GitHub Desktop.
Save seabrizz/cd0ee315ab0e2233733a06f28fc5763c to your computer and use it in GitHub Desktop.
menu slide left/right
js
$("#bttn").click(function () {
$("#menu_slide").animate({
width: 'toggle'
});
});
html
<button id="bttn">Toggle</button>
<div id="menu_slide">Lorem ipsum dolor sit amet.</div>
css
#bttn {
position: fixed;
top: 10px;
right: 10px;
z-index: 10;
}
#menu_slide {
background-color: #000;
display: block;
width: 300px;
height: 100%;
padding: 10px;
display: none;
position: fixed;
top: 0;
right: 0;
color: #fff;
z-index: 9;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment