Created
March 24, 2017 10:21
-
-
Save foliwe/71d30c7fc871ce390c8ce9d17004c6a1 to your computer and use it in GitHub Desktop.
Jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).on "turbolinks:load", -> | |
$('#menu_toggle').click -> | |
$('#menu_side').addClass('visible') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<header> | |
<%= link_to 'Menu', '' ,id: 'menu_toggle'%> | |
<nav id="menu_side"> | |
<ul> | |
<li><%= link_to 'Menu', ''%></li> | |
<li><%= link_to 'About', ''%></li> | |
<li><%= link_to 'News', ''%></li> | |
<li><%= link_to 'Contact', ''%></li> | |
</ul> | |
</nav> | |
</header> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#menu_side{ | |
background: #151718; | |
width: 200px; | |
height: 100%; | |
display: block; | |
position: fixed; | |
top: 0px; | |
left: -200px; | |
transition: left 0.3s linear; | |
} | |
#menu_side.visible{ | |
left: 0px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment