Created
February 7, 2014 03:22
-
-
Save srhise/8856963 to your computer and use it in GitHub Desktop.
A Pen by srhise.
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
<div class="container" id="drawernav"> | |
<div class="row"> | |
<div class="col-md-12"> | |
<a href="#" class="btn btn-primary">Item 1</a> | |
<a href="#" class="btn btn-primary">Item 2</a> | |
<a href="#" class="btn btn-primary">Item 3</a> | |
<a href="#" class="btn btn-primary">Item 4</a> | |
</div> | |
</div> | |
</div> | |
<div class="container" id="mainnav"> | |
<div class="row"> | |
<div class="col-md-12"> | |
<a id="navigation-link" href="#" class="btn btn-primary">Navigation <i class="fa fa-plus-circle"></i></a> | |
</div> | |
</div> | |
</div> |
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).ready(function () { | |
$('#navigation-link').on('click', function() { | |
$('#drawernav').slideToggle(440, function(){ | |
}); | |
}); | |
}); |
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
@import url(//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css); | |
#mainnav { | |
margin: 50px auto 0 auto; | |
position: fixed; | |
bottom: 10px; | |
width:100%; | |
} | |
#navigation-link { | |
width:100%; | |
font-size:24px; | |
} | |
#drawernav { | |
display:none; | |
margin: 0px auto; | |
position: fixed; | |
bottom: 58px; | |
width:100%; | |
} | |
#drawernav a.btn { | |
width:100%; | |
border-radius:0px; | |
border:1px solid #eee; | |
border-top:none; | |
font-size:20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment