Difference between revisions of "Template:Waterloo/JS/header.js"
Line 30: | Line 30: | ||
// for smooth scrolling | // for smooth scrolling | ||
− | $(function() { | + | // $(function() { |
− | $('a[href*=#]:not([href=#])').click(function() { | + | // $('a[href*=#]:not([href=#])').click(function() { |
− | if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { | + | // if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { |
− | var target = $(this.hash); | + | // var target = $(this.hash); |
− | target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); | + | // target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); |
− | if (target.length) { | + | // if (target.length) { |
− | $('html,body').animate({ | + | // $('html,body').animate({ |
− | scrollTop: target.offset().top | + | // scrollTop: target.offset().top |
− | }, 500); | + | // }, 500); |
− | return false; | + | // return false; |
− | } | + | // } |
− | } | + | // } |
− | }); | + | // }); |
− | }); | + | // }); |
Revision as of 18:27, 21 August 2015
// scripts for header
// detects scroll for top resizing and lower nav show $(window).scroll(function() {
if ($(document).scrollTop() > 50) { $('.navbar-fixed-top').addClass('shrink'); if ($('#inner-page-links').children().length > 0) { $('.outer-nav-box').removeClass('hide-lower') } } else { $('.navbar-fixed-top').removeClass('shrink'); $('.outer-nav-box').addClass('hide-lower') }
});
// set lower navbar $('.navbar-lower').affix({
offset: {top: 200}
});
// fills in lower nav with inner page links $(document).ready(function(){
$('.link').each(function(i, obj) {$("#inner-page-links").append('
}); if ($('#inner-page-links').children().length < 1) { $('.outer-nav-box').addClass('hide-lower') }
});
// for smooth scrolling // $(function() { // $('a[href*=#]:not([href=#])').click(function() { // if (location.pathname.replace(/^\//,) == this.pathname.replace(/^\//,) && location.hostname == this.hostname) { // var target = $(this.hash); // target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); // if (target.length) { // $('html,body').animate({ // scrollTop: target.offset().top // }, 500); // return false; // } // } // }); // });