Difference between revisions of "Team:DTU-Denmark/wiki.js"

Line 2: Line 2:
 
   $('style')[0].disabled=true;
 
   $('style')[0].disabled=true;
 
   $('#bodyContent').find('p').first().css('display', 'none');
 
   $('#bodyContent').find('p').first().css('display', 'none');
  $(window).scroll(function () {
 
    if ($(window).scrollTop() > 0) {
 
        $("#top_menu_14").addClass("top_menu_faded");
 
      } else {
 
        $("#top_menu_14").removeClass("top_menu_faded");
 
      }
 
  });
 
 
}
 
}
 
        
 
        
Line 27: Line 20:
 
       var $anchor = $(this);
 
       var $anchor = $(this);
 
       $('html, body').stop().animate({
 
       $('html, body').stop().animate({
         scrollTop: $($anchor.attr('href')).offset().top - 60
+
         scrollTop: $($anchor.attr('href')).offset().top - 70
 
       }, 1500, 'easeInOutExpo');
 
       }, 1500, 'easeInOutExpo');
 
       event.preventDefault();
 
       event.preventDefault();

Revision as of 20:26, 8 September 2015

if (window.location.hostname == '2015.igem.org'){

 $('style')[0].disabled=true;
 $('#bodyContent').find('p').first().css('display', 'none');

}

$(document).ready(function() {

 // jQuery to collapse the navbar on scroll
 $(window).scroll(function () {
   if ($(window).scrollTop() > $(".hero").height() + 30) {
       $(".navbar-fixed-top").addClass("top-nav-collapse");
       $(".extrabar").removeClass("hidden");
     } else {
       $(".navbar-fixed-top").removeClass("top-nav-collapse");
       $(".extrabar").addClass("hidden");
     }
 });
 // jQuery for page scrolling feature - requires jQuery Easing plugin
 $(function () {
   $('a.page-scroll').bind('click', function (event) {
     var $anchor = $(this);
     $('html, body').stop().animate({
       scrollTop: $($anchor.attr('href')).offset().top - 70
     }, 1500, 'easeInOutExpo');
     event.preventDefault();
   });
 });
 $(function () {
   $('[data-toggle="tooltip"]').tooltip();
 });

});