Team:Uppsala/JavaScript

From 2014.igem.org

(Difference between revisions)
(Created page with "<script type="text/javascript"> $(document).ready(function (){ var stats = $('.back-to-top'), timer; stats.hide(); $(function () { $(window).scroll(function() { s...")
 
(328 intermediate revisions not shown)
Line 1: Line 1:
-
<script type="text/javascript">
+
jQuery(document).ready(function() {
 +
    var button = ('.back-to-top'), timer;
 +
    var offset = 500;
 +
    var duration = 1000;
-
$(document).ready(function (){
+
  jQuery(window).scroll(function() {
-
var stats = $('.back-to-top'),
+
        if (jQuery(this).scrollTop() > offset) {
-
    timer;
+
            jQuery(button).fadeIn(duration);
-
stats.hide();
+
            clearTimeout(timer);
-
+
            timer = setTimeout(function() {
-
$(function () {
+
            jQuery(button).stop(true, true).fadeOut(duration);}, 2000);  
-
$(window).scroll(function() {
+
        }
-
stats.fadeIn();
+
       
-
clearTimeout(timer);
+
        if (jQuery(this).scrollTop() < offset) {
-
timer = setTimeout(function() {
+
        jQuery(button).fadeOut(duration);
-
stats.stop(true,true).fadeOut('slow');
+
        }       
-
}, 3000);
+
  });
-
+
     
-
});
+
    jQuery(button).click(function(event) {
-
$('.back-to-top').click(function () {
+
        event.preventDefault();
-
$('body,html').animate({
+
        jQuery('html, body').animate({scrollTop: 0}, duration);
-
scrollTop: 0
+
        return false;
-
}, 800);
+
    });
-
return false;
+
-
});
+
-
});
+
});
});
-
</script>
+
jQuery(document).ready(function() {
 +
 
 +
  $(document).click(function() {
 +
 
 +
  if ( $('.view').css("opacity") == 1){
 +
  toggleVisibility('intro');
 +
  }
 +
 
 +
  });
 +
});
 +
 
 +
 
 +
jQuery(document).ready(function() {
 +
 
 +
  $(document).click(function() {
 +
 
 +
  if ( $('.view').css("opacity") == 1){
 +
  toggleVisibility('intro');
 +
  }
 +
 
 +
  });
 +
});
 +
 
 +
 
 +
jQuery(document).ready(function() {
 +
 
 +
  $(document).click(function(f) {
 +
      var target = $(f.target);
 +
 
 +
      if (target.is('#week_incr')){
 +
      if (calendar_week_var < total_weeks) {
 +
        calendar_week_var = calendar_week_var + 1;
 +
      }
 +
        document.getElementById("calendar_week").innerHTML = "week " + calendar_week_var; 
 +
     
 +
        for(i = ((calendar_week_var*7)-7); i < (calendar_week_var*7); i++) {
 +
          var str = "calendar_day" + (i+1-((calendar_week_var-1)*7));
 +
          document.getElementById(str).innerHTML = calendar_dates_array[i];
 +
        }
 +
      }
 +
      else if (target.is('#week_decr')){
 +
        if (calendar_week_var > 1) {
 +
        calendar_week_var = calendar_week_var - 1;
 +
        }
 +
        document.getElementById("calendar_week").innerHTML = "week " + calendar_week_var;
 +
       
 +
        for(i = ((calendar_week_var*7)-7); i < (calendar_week_var*7); i++) {
 +
          var str = "calendar_day" + (i+1-((calendar_week_var-1)*7));
 +
          document.getElementById(str).innerHTML = calendar_dates_array[i];
 +
        }
 +
      }
 +
 
 +
  });
 +
});
 +
 
 +
jQuery(document).ready(function() {
 +
 
 +
  $(document).click(function(f) {
 +
      var target = $(f.target);
 +
         
 +
      for(i = ((calendar_week_var*7)-7); i < (calendar_week_var*7); i++) {
 +
        var str = "#calendar_day" + (i+1-((calendar_week_var-1)*7));
 +
        if (target.is(str)) {
 +
          document.getElementById("calendar_head").innerHTML = calendar_dates_array[i];
 +
          var work_str = "<tr><th>Strain</th><th>Backbone</th><th>Construct</th><th>Work</th><th>Person</th></tr>";
 +
         
 +
          for(j = 0; j < work_database[i].length; j++) {
 +
          work_str = work_str + work_database[i][j];
 +
          }
 +
 
 +
          document.getElementById("calendar_work").innerHTML = work_str;
 +
          {break}
 +
        }
 +
      }
 +
 
 +
  });
 +
});

Latest revision as of 13:32, 16 October 2014

jQuery(document).ready(function() {

   var button = ('.back-to-top'), timer;
   var offset = 500;
   var duration = 1000;
 jQuery(window).scroll(function() {
       if (jQuery(this).scrollTop() > offset) {
           jQuery(button).fadeIn(duration);
           clearTimeout(timer);
           timer = setTimeout(function() {
           jQuery(button).stop(true, true).fadeOut(duration);}, 2000);    
       }
        
        if (jQuery(this).scrollTop() < offset) {
        jQuery(button).fadeOut(duration);
        }        
  });
      
   jQuery(button).click(function(event) {
       event.preventDefault();
       jQuery('html, body').animate({scrollTop: 0}, duration);
       return false;
   });

});

jQuery(document).ready(function() {

  $(document).click(function() {
  if ( $('.view').css("opacity") == 1){
  toggleVisibility('intro');
  }
  });

});


jQuery(document).ready(function() {

  $(document).click(function() {
  if ( $('.view').css("opacity") == 1){
  toggleVisibility('intro');
  }
  });

});


jQuery(document).ready(function() {

  $(document).click(function(f) {
     var target = $(f.target);
     if (target.is('#week_incr')){
      if (calendar_week_var < total_weeks) {
       calendar_week_var = calendar_week_var + 1;
      }
       document.getElementById("calendar_week").innerHTML = "week " + calendar_week_var;  
      
       for(i = ((calendar_week_var*7)-7); i < (calendar_week_var*7); i++) {
         var str = "calendar_day" + (i+1-((calendar_week_var-1)*7));
         document.getElementById(str).innerHTML = calendar_dates_array[i];
       }
     }
     else if (target.is('#week_decr')){
       if (calendar_week_var > 1) {
       calendar_week_var = calendar_week_var - 1;
       }
       document.getElementById("calendar_week").innerHTML = "week " + calendar_week_var;
       
       for(i = ((calendar_week_var*7)-7); i < (calendar_week_var*7); i++) {
         var str = "calendar_day" + (i+1-((calendar_week_var-1)*7));
         document.getElementById(str).innerHTML = calendar_dates_array[i];
       }
     }
  });

});

jQuery(document).ready(function() {

  $(document).click(function(f) {
     var target = $(f.target);
          
     for(i = ((calendar_week_var*7)-7); i < (calendar_week_var*7); i++) {
       var str = "#calendar_day" + (i+1-((calendar_week_var-1)*7));
       if (target.is(str)) {
         document.getElementById("calendar_head").innerHTML = calendar_dates_array[i];
         var work_str = "<tr><th>Strain</th><th>Backbone</th><th>Construct</th><th>Work</th><th>Person</th></tr>";
         
         for(j = 0; j < work_database[i].length; j++) {
          work_str = work_str + work_database[i][j];
         }
         document.getElementById("calendar_work").innerHTML = work_str;
         {break}
       }
     }
  });

});