Skip to content

Latest commit

 

History

History
48 lines (35 loc) · 1 KB

README.md

File metadata and controls

48 lines (35 loc) · 1 KB

Easiest way for creating side menus CSS3 transitions

Getting Started

Set up on your body the position

Left sidemenu

<body class="sidemenu-left">

Right sidemenu

<body class="sidemenu-right">

After body Side menu

<div id="sidemenu">
	...
</div>

jQuery for toggle sidemenu

<script>
    $("#sidemenu-toggle").click(function(e) {
        e.preventDefault();
        $("body").toggleClass("toggle-sidemenu");
    });
</script>

See example: http://yasinkocak.github.io/fixed-sidemenu

Development

Pull requests are very welcome!

Licensing

Released under the MIT License http://opensource.org/licenses/MIT

Copyright © 2015 Yasin Kocak (http://yasin.kocak.io)