Team:Goettingen/suplement/scripts
From 2013.igem.org
(Difference between revisions)
m |
|||
Line 10: | Line 10: | ||
}); | }); | ||
- | + | function proFlyout(which){ | |
- | + | var x="."+which,y=".f-"+which,z="#id-"+which; | |
- | + | $(z).mouseenter(function(){$(y).fadeIn("fast");$(x).addClass("deact");}); | |
- | + | $(z).mouseleave(function(){$(x).removeClass("deact");$(y).fadeOut("fast");}); | |
- | + | }; | |
- | + | ||
- | + | ||
- | $( | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | $( | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + |
Revision as of 20:52, 3 June 2013
//universal
$(".f-larger").click(function(){ $("p").css("font-size","14pt"); }); $(".f-smaller").click(function(){ $("p").css("font-size","12pt"); }); $(".f-medium").click(function(){
$("p").css("font-size","13pt");
});
function proFlyout(which){
var x="."+which,y=".f-"+which,z="#id-"+which; $(z).mouseenter(function(){$(y).fadeIn("fast");$(x).addClass("deact");}); $(z).mouseleave(function(){$(x).removeClass("deact");$(y).fadeOut("fast");});
};