Team:Alberta/application.js

From 2010.igem.org

(Difference between revisions)
 
(23 intermediate revisions not shown)
Line 2: Line 2:
$(document).ready(function(){
$(document).ready(function(){
-
   // hide the igem toolbar
+
   // show the drop down list on hover
-
   $('#top-section').css('marginTop',-83).addClass("slid-up");
+
   $('li.headlink').hover(
 +
    /*function() { $('ul', this).show(); },
 +
    function() { $('ul', this).hide(); }*/
 +
    function() { $('ul', this).css('display', 'table') },
 +
    function() { $('ul', this).css('display', 'none') }
 +
  );
-
  // append a button for sliding down the igem toolbar
+
   $('.achieve-link').click(function(){
-
   $("#menubar").append(  
+
    document.location="https://2010.igem.org/Team:Alberta/Achievements";
-
    '<div id="show-toolbar-btn">' +
+
  });
-
    '<a href="#" title="Slide down the IGEM toolbar.">' +
+
-
    'Slide down</a></div>' );
+
-
   $("#show-toolbar-btn").click( function(){  
+
   $('.software-link').click(function(){
-
     var top = $('#top-section');
+
     document.location="https://2010.igem.org/Team:Alberta/Software";
-
     // amount to move the top
+
  });
-
    var distance = '83';
+
 
-
    if( top.hasClass( "slid-up" ) ){
+
  $('.kit-link').click(function(){
-
      top.removeClass( "slid-up" );
+
     document.location="https://2010.igem.org/Team:Alberta/Kit";
-
      var direction = '+=';
+
  });
-
    }
+
 
-
    else {
+
  $('.biobytes-link').click(function(){
-
      top.addClass('slid-up');
+
    document.location="https://2010.igem.org/Team:Alberta/biobyte2";
-
      var direction = '-=';
+
  });
-
    }
+
 
-
    top.animate({
+
  $('.genomikon-link').click(function(){
-
        marginTop: (direction + distance),
+
    document.location="http://www.genomikon.ca";
-
     }, 3000 );
+
  });
-
    return false;
+
 
 +
$('.tour-link').click(function(){
 +
     document.location="https://2010.igem.org/Team:Alberta/Tour/start";
   });
   });
});
});

Latest revision as of 00:57, 27 October 2010

// This file for javascript that we want to include on all pages

$(document).ready(function(){

 // show the drop down list on hover
 $('li.headlink').hover(
   /*function() { $('ul', this).show(); },
   function() { $('ul', this).hide(); }*/
   function() { $('ul', this).css('display', 'table') },
   function() { $('ul', this).css('display', 'none') }
 );
 $('.achieve-link').click(function(){
   document.location="https://2010.igem.org/Team:Alberta/Achievements";
 });
 $('.software-link').click(function(){
   document.location="https://2010.igem.org/Team:Alberta/Software";
 });
 $('.kit-link').click(function(){
   document.location="https://2010.igem.org/Team:Alberta/Kit";
 });
 $('.biobytes-link').click(function(){
   document.location="https://2010.igem.org/Team:Alberta/biobyte2";
 });
 $('.genomikon-link').click(function(){
   document.location="http://www.genomikon.ca";
 });

$('.tour-link').click(function(){

   document.location="https://2010.igem.org/Team:Alberta/Tour/start";
 });

});