Skip to content

Instantly share code, notes, and snippets.

@NickDeckerDevs
Created September 22, 2016 14:40
Show Gist options
  • Save NickDeckerDevs/e6dadf27652745eafa5baa9f031c159a to your computer and use it in GitHub Desktop.
Save NickDeckerDevs/e6dadf27652745eafa5baa9f031c159a to your computer and use it in GitHub Desktop.
littles special scrolling menu that can be found: http://www.relittle.com/specials-events/
jQuery(document).ready(function($) {
var sections = getAllSpecialSections();
var activeMenuItem = window.location.hash;
var menuIsActive = activeMenuItem.indexOf('#') > -1 ? true : false;
jQuery('.specials-wrapper nav').html(getMenu(menuIsActive));
watchMenu();
});
function getAllSpecialSections() {
specialSection = [];
jQuery('.specials-section').each(function() {
specialSection.push('#'+jQuery(this).attr('id'));
});
return specialSection;
}
function cleanIdString(dirtyString) {
cleanString = dirtyString.replace(/^[^a-z]+|[^\w:.-]+/gi, "");
return cleanString;
}
function getMenu(menuIsActive) {
var menuhtml = '<ul class="sidemenu">';
count = 0;
jQuery('.specials-section').each(function() {
var id = cleanIdString(jQuery(this).attr('id'));
var active = (menuIsActive == false && count == 0) ? ' class="active" ': ('#' + id == window.location.hash) ? ' class="active" ' : ' ';
menuhtml += '<li id="'+id+'-menu"' + active + 'data-menu-jump="' + id +'">'+jQuery(this).data('menu') + '</li>';
count++;
});
return menuhtml += '</ul>';
}
function watchMenu() {
jQuery('.specials-wrapper').on('click', 'li', function() {
jQuery('.specials-wrapper li.active').removeClass('active');
jQuery(this).addClass('active');
var newLocation = jQuery(this).data('menu-jump');
window.location.href = '#' + newLocation;
})
}
jQuery(function() {
var $window = jQuery(window),
$stickyEl = jQuery('.sidemenu'),
elTop = $stickyEl.offset().top,
elBottom = jQuery('.specials-wrapper').parent().next().offset().top - $stickyEl.height() - 20;
$window.scroll(function() {
$stickyEl.toggleClass('visible', $window.scrollTop() < elBottom && $window.scrollTop() > elTop);
});
});
jQuery.fn.idInView = function(){
var win = jQuery(window);
//Object to Check
obj = jQuery(this);
var currentId = obj.attr('id');
//the top Scroll Position in the page
var scrollPosition = win.scrollTop();
//the end of the visible area in the page, starting from the scroll position
var visibleArea = win.scrollTop() + win.height();
//the end of the object to check
var objEndPos = (obj.offset().top + obj.outerHeight());
if(visibleArea >= objEndPos && scrollPosition <= objEndPos) {
jQuery('.sidemenu li').not('#'+currentId+'-menu').removeClass('active');
if(!jQuery('.sidemenu li#'+currentId+'-menu').hasClass('active')) {
jQuery('.sidemenu li#'+currentId+'-menu').addClass('active');
}
}
return false;
};
jQuery(window).on('scroll', function() {
for(var i=0; i < specialSection.length; i++) {
jQuery(specialSection[i]).idInView();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment