Pushpin es nuestro complemento de posicionamiento fijo. Úselo para fijar elementos en su página durante intervalos de desplazamiento específicos.
$('.pushpin-demo-nav').each(function() {
var $this = $(this);
var $target = $('#' + $(this).attr('data-target'));
$this.pushpin({
top: $target.offset().top,
bottom: $target.offset().top + $target.outerHeight() - $this.height()
});
});