Skip to content

Instantly share code, notes, and snippets.

@arioch1984
Created May 20, 2014 10:07
Show Gist options
  • Save arioch1984/3278189ce7191bee9c67 to your computer and use it in GitHub Desktop.
Save arioch1984/3278189ce7191bee9c67 to your computer and use it in GitHub Desktop.
jQuery floating share box
//Taken from http://www.webanddesigners.com/floating-share-box/
$(function() {
var offset = $("#box").offset();
var topPadding = 15;
$(window).scroll(function() {
if ($(window).scrollTop() > offset.top) {
$("#box").stop().animate({
marginTop: $(window).scrollTop() - offset.top + topPadding
});
} else {
$("#box").stop().animate({
marginTop: 0
});
};
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment