Skip to content

Instantly share code, notes, and snippets.

@cagriuckan
Created November 24, 2016 08:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cagriuckan/d2c853e50e2514871fd2269acfa43389 to your computer and use it in GitHub Desktop.
Save cagriuckan/d2c853e50e2514871fd2269acfa43389 to your computer and use it in GitHub Desktop.
Social Media Share Bar With jQuery by uckannet
var lastScrollTop = 0;
$(window).scroll(function(event){
var st = $(this).scrollTop();
if (st > lastScrollTop){
// downscroll code
$('.so-sticky-share').addClass('so-classname');
} else {
// upscroll code
$('.so-sticky-share').removeClass('so-classname');
}
lastScrollTop = st;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment