Created
August 29, 2011 15:41
-
-
Save chadspencer/1178654 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
/* About */ | |
$("ul.navigation li a[href='#about']").fancybox({ | |
'overlayColor' : '#000', | |
'overlayOpacity' : 0.5, | |
'titleShow' : false, | |
'padding' : 0, | |
'scrolling' : 'no', | |
'onStart' : function() { | |
$("html,body").animate({scrollTop:0}, 100, "easeInCirc"); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
/* About */
$("ul.navigation li a[href='#about']").bind('click', function(e) {
$(window).scrollTop(0);
$(e.target).fancybox({
'overlayColor' : '#000',
'overlayOpacity' : 0.5,
'titleShow' : false,
'padding' : 0,
'scrolling' : 'no',
'onStart' : function() {
$("html,body").animate({scrollTop:0}, 100, "easeInCirc");
}
});
});