Skip to content

Instantly share code, notes, and snippets.

@faruk09
Last active January 8, 2020 09:39
Show Gist options
  • Save faruk09/f374e3493def8e27994477991efa7450 to your computer and use it in GitHub Desktop.
Save faruk09/f374e3493def8e27994477991efa7450 to your computer and use it in GitHub Desktop.
// Sticky Navigation
$(window).on('scroll',function() {
var scroll = $(window).scrollTop();
if (scroll < 40) {
$(".sticky").removeClass("scroll-header");
}else{
$(".sticky").addClass("scroll-header");
}
});
$("a[href='#top']").click(function() {
$("html, body").animate({ scrollTop: 0 }, "slow");
return false;
});
----------------
Add sticky class to header - <header class="sticky">
----------------
In CSS
header.sticky.scroll-header {
position: fixed;
left: 0;
right: 0;
background: #87509c;
}">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment