Skip to content

Instantly share code, notes, and snippets.

@Abhinav1217
Forked from andrewlaskey/stickyTitles.js
Created December 17, 2015 18:21
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 Abhinav1217/fda61ce773d52f4210a3 to your computer and use it in GitHub Desktop.
Save Abhinav1217/fda61ce773d52f4210a3 to your computer and use it in GitHub Desktop.
Sticky Instagram-like Headers
//http://stackoverflow.com/questions/13279725/getting-a-sticky-header-to-push-up-like-in-instagrams-iphone-app-using-css-a
function stickyTitles(stickies) {
this.load = function() {
stickies.each(function(){
var thisSticky = jQuery(this).wrap('<div class="followWrap" />');
thisSticky.parent().height(thisSticky.outerHeight());
jQuery.data(thisSticky[0], 'pos', thisSticky.offset().top);
});
}
this.resize = function() {
stickies.each(function(){
var thisSticky = $(this);
thisSticky.parent().height(thisSticky.outerHeight());
jQuery.data(thisSticky[0], 'pos', thisSticky.offset().top);
});
}
this.scroll = function() {
stickies.each(function(i){
var thisSticky = jQuery(this),
nextSticky = stickies.eq(i+1),
prevSticky = stickies.eq(i-1),
pos = jQuery.data(thisSticky[0], 'pos');
if (pos <= jQuery(window).scrollTop()) {
thisSticky.addClass("fixed");
if (nextSticky.length > 0 && thisSticky.offset().top >= jQuery.data(nextSticky[0], 'pos') - thisSticky.outerHeight()) {
thisSticky.addClass("absolute").css("top", jQuery.data(nextSticky[0], 'pos') - thisSticky.outerHeight());
}
//added - replace the sticky header when it sticks
if (thisSticky.find('.alt-sub').length !== 0) {
if (thisSticky.find('.primary-sub').length !== 0) {
thisSticky.find('.primary-sub').fadeOut("fast", function() {
thisSticky.find('.alt-sub').fadeIn("fast");
});
} else {
thisSticky.find('.alt-sub').fadeIn("fast");
}
}
} else {
thisSticky.removeClass("fixed");
if (prevSticky.length > 0 && jQuery(window).scrollTop() <= jQuery.data(thisSticky[0], 'pos') - prevSticky.outerHeight()) {
prevSticky.removeClass("absolute").removeAttr("style");
}
//added - put the original content back
if (thisSticky.find('.alt-sub').length !== 0) {
if (thisSticky.find('.primary-sub').length !== 0) {
thisSticky.find('.alt-sub').fadeOut("fast", function() {
thisSticky.find('.primary-sub').fadeIn("fast");
});
} else {
thisSticky.find('.alt-sub').fadeOut("fast");
}
}
}
});
}
}
$(window).load(function() {
//sticky headers
var newStickies = new stickyTitles($(".sticky"));
newStickies.load();
$(window).on("scroll", function() {
newStickies.scroll();
});
$(window).resize(function() {
newStickies.resize();
});
});
@Abhinav1217
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment