Skip to content

Instantly share code, notes, and snippets.

@fleeting
Created March 29, 2012 18:04
Show Gist options
  • Save fleeting/2241147 to your computer and use it in GitHub Desktop.
Save fleeting/2241147 to your computer and use it in GitHub Desktop.
Timeline panel.scrollspy
panel.scrollspy({
min: position.top-300,
max: position.top + panel.height()-300,
onEnter: function(element, position) {
$('aside li.'+panel.attr('rel')).addClass('active');
box.animate({
top: box.attr('data-end-top'),
right: box.attr('data-end-right'),
bottom: box.attr('data-end-bottom'),
left: box.attr('data-end-left')
}, 1000);
},
onLeave: function(element, position) {
$('aside li.'+panel.attr('rel')).removeClass('active');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment