javascript - How to make a animated sidein navigation bar? -


how make following slidein navigation bar? possible without using plugins , stick css3?

http://middle-earth.thehobbit.com/map

no plugins, simple markup, css transitions, , few lines of javascript

http://jsfiddle.net/7a5t6/6/

#menu{ height:100%; transition:1s; width:200px; margin-left:-200px; }  button{ position:absolute; right:-30px;     } 

javascript:

var open = document.getelementbyid('open') var menu = document.getelementbyid('menu')  open.addeventlistener('click',openit,false);  var = 0;  function openit(){     if(i==0){         menu.style.marginleft= "0px"         i=1     }     else{         menu.style.marginleft= "-200px"         i=0     } } 

Comments

Popular posts from this blog

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -