Created
June 3, 2016 08:13
-
-
Save celticwebdesign/8e99381a6c32d62606cc182a17012553 to your computer and use it in GitHub Desktop.
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
$('a#footer-icon').click(function(e) { | |
e.preventDefault(); | |
var $t = $('#footer .bottom'); | |
if ($t.is(':visible')) { | |
$t.slideUp(400); | |
} else { | |
$t.slideDown(400); | |
$("html, body").animate({ scrollTop: $(document).height() }, 1000); | |
} | |
}); | |
#footer .bottom { | |
display: none; | |
} | |
<div class="col-xs-12 bottom" style="display: block;"> | |
<div class="row"> | |
<div class="col-sm-4 bottom_left"> | |
<div class="block menu"> | |
<h3>About us</h3> | |
<div id="nav_menu-2" class="widget_nav_menu"></div> | |
</div> | |
</div> | |
<div class="col-sm-4 bottom_center"></div> | |
<div class="col-sm-4 bottom_right"></div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment