Team:UCL E/js
From 2013.igem.org
(Difference between revisions)
Line 1: | Line 1: | ||
$(document).ready(function(){ | $(document).ready(function(){ | ||
$(".contactlink").mouseover(function(){ | $(".contactlink").mouseover(function(){ | ||
- | $(this).animate({color:'#73B9FF'},200); | + | $(this).animate({'color':'#73B9FF'},200); |
}); | }); | ||
$(".contactlink").mouseout(function() { | $(".contactlink").mouseout(function() { | ||
- | $(this).animate({color:'#000'},200); | + | $(this).animate({'color':'#000'},200); |
}); | }); | ||
}); | }); |
Revision as of 11:19, 20 July 2013
$(document).ready(function(){ $(".contactlink").mouseover(function(){
$(this).animate({'color':'#73B9FF'},200); });
$(".contactlink").mouseout(function() {
$(this).animate({'color':'#000'},200); });
});