Team:SCUT
From 2014.igem.org
(Difference between revisions)
Line 310: | Line 310: | ||
$(document).ready(function(){ | $(document).ready(function(){ | ||
$(".ho_team").mouseenter(function(){ | $(".ho_team").mouseenter(function(){ | ||
- | $( | + | $(".model").fadeOut(); |
+ | $(".project").fadeOut(); | ||
+ | $(".dp").fadeOut(); | ||
+ | $(".hp").fadeOut(); | ||
$(".team").fadeIn(); | $(".team").fadeIn(); | ||
}); | }); | ||
$(".ho_model").mouseenter(function(){ | $(".ho_model").mouseenter(function(){ | ||
- | $( | + | $(".project").fadeOut(); |
+ | $(".dp").fadeOut(); | ||
+ | $(".hp").fadeOut(); | ||
+ | $(".team").fadeOut(); | ||
$(".model").fadeIn(); | $(".model").fadeIn(); | ||
}); | }); | ||
$(".ho_project").mouseenter(function(){ | $(".ho_project").mouseenter(function(){ | ||
- | $( | + | $(".dp").fadeOut(); |
+ | $(".hp").fadeOut(); | ||
+ | $(".team").fadeOut(); | ||
+ | $(".model").fadeOut(); | ||
$(".project").fadeIn(); | $(".project").fadeIn(); | ||
}); | }); | ||
$(".ho_dp").mouseenter(function(){ | $(".ho_dp").mouseenter(function(){ | ||
- | $( | + | $(".hp").fadeOut(); |
+ | $(".team").fadeOut(); | ||
+ | $(".model").fadeOut(); | ||
+ | $(".project").fadeOut(); | ||
$(".dp").fadeIn(); | $(".dp").fadeIn(); | ||
}); | }); | ||
$(".ho_hp").mouseenter(function(){ | $(".ho_hp").mouseenter(function(){ | ||
- | $( | + | $(".team").fadeOut(); |
+ | $(".model").fadeOut(); | ||
+ | $(".project").fadeOut(); | ||
+ | $(".dp").fadeOut(); | ||
$(".hp").fadeIn(); | $(".hp").fadeIn(); | ||
}); | }); |
Revision as of 06:16, 14 October 2014