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

(Created page with "if (window.location.hostname == '2015.igem.org'){ $('style')[0].disabled=true }")
 
Line 2: Line 2:
 
   $('style')[0].disabled=true
 
   $('style')[0].disabled=true
 
}
 
}
 +
     
 +
$(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 - 60
 +
      }, 1500, 'easeInOutExpo');
 +
      event.preventDefault();
 +
    });
 +
  });
 +
  $(function () {
 +
    $('[data-toggle="tooltip"]').tooltip()
 +
  });
 +
});

Revision as of 10:10, 18 August 2015

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

 $('style')[0].disabled=true

}

$(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 - 60
     }, 1500, 'easeInOutExpo');
     event.preventDefault();
   });
 });
 $(function () {
   $('[data-toggle="tooltip"]').tooltip()
 });

});