Created
July 18, 2015 05:34
-
-
Save kbouw/b60a542ce3ad50c3885d to your computer and use it in GitHub Desktop.
Revisions
-
kbouw created this gist
Jul 18, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ $(window).scroll(function() { if ($(document).scrollTop() > 300) { $('nav').addClass('shrink'); } else { $('nav').removeClass('shrink'); } }); $("#view-more").click(function() { $('html, body').animate({ scrollTop: $(".features1").offset().top }, 1000); });