Team:Uppsala/JavaScript
From 2014.igem.org
(Difference between revisions)
Line 30: | Line 30: | ||
var button = ('.view'); | var button = ('.view'); | ||
$(button).click(function() { | $(button).click(function() { | ||
- | var op = $(button).("opacity"); | + | var op = $(button).css("opacity"); |
if (op == 1) | if (op == 1) | ||
{ | { |
Revision as of 18:17, 5 August 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() {
var button = ('.view'); $(button).click(function() { var op = $(button).css("opacity"); if (op == 1)
{
toggleVisibility('intro');
}
});
});