Team:UNITN-Trento/JS/Extra

From 2013.igem.org

(Difference between revisions)
(Created page with "$(document).ready(function() { //Remove default click of .dot $(".dot").click(function(e) { e.preventDefault(); }); $(".spot").each(function() { // Remove .spot defaul...")
(Blanked the page)
 
Line 1: Line 1:
-
$(document).ready(function() {
 
-
//Remove default click of .dot
 
-
$(".dot").click(function(e) {
 
-
e.preventDefault();
 
-
});
 
-
 
-
$(".spot").each(function() {
 
-
// Remove .spot default click
 
-
$(this).click(function(e) { e.preventDefault() });
 
-
//Change .dot content when mouseenter spot
 
-
$(this).mouseenter(function() {
 
-
id = $(this).attr('id');
 
-
var url = "", img = "", title = "", desc = "";
 
-
switch(id) {
 
-
case "spot1": {
 
-
url = "https://2013.igem.org/Team:UNITN-Trento/Attributions";
 
-
img = "https://static.igem.org/mediawiki/2013/3/3d/Tn-2013-tour_circle-Vending-machine.png";
 
-
title = "Attributions";
 
-
desc = "In this page you can find all the fantastic people that supported the team all over this summer, and also the masters (guru) of each part of the project.";
 
-
break;
 
-
}
 
-
 
-
case "spot2": {
 
-
url = "https://2013.igem.org/Team:UNITN-Trento/Extra/Fruit%20Info";
 
-
img = "https://static.igem.org/mediawiki/2013/a/a6/Tn-2013-tour_circle-Home-edition.png";
 
-
title = "Fruit Info";
 
-
desc = "Some cute info about fruit that maybe you still don’t know! Check it out!";
 
-
break;
 
-
}
 
-
 
-
case "spot3": {
 
-
url = "https://2013.igem.org/Team:UNITN-Trento/Human_Practice";
 
-
img = "https://static.igem.org/mediawiki/2013/3/3d/Tn-2013-tour_circle-Vending-machine.png";
 
-
title = "Human Practice";
 
-
desc = "The team meets the people at the market, asking for opinions and suggestions about <i>B. fruity</i>!";
 
-
break;
 
-
}
 
-
 
-
case "spot4": {
 
-
url = "https://2013.igem.org/Team:UNITN-Trento/Safety";
 
-
img = "https://static.igem.org/mediawiki/2013/a/a6/Tn-2013-tour_circle-Home-edition.png";
 
-
title = "Safety";
 
-
desc = "Synthetic biology is such an exciting subject but obviously the team considered how to improve the project to make it as safe as possible!";
 
-
break;
 
-
}
 
-
 
-
case "spot5": {
 
-
url = "https://2013.igem.org/Team:UNITN-Trento/Sponsor";
 
-
img = "https://static.igem.org/mediawiki/2013/3/3d/Tn-2013-tour_circle-Vending-machine.png";
 
-
title = "Sponsor";
 
-
desc = "Here are the people who made this project possible and who first believed in the team!";
 
-
break;
 
-
}
 
-
}
 
-
 
-
//Change dot link
 
-
$(".dot").click(function(e) {
 
-
document.location.href = url;
 
-
});
 
-
$(".dot .circle").attr("src" , img);
 
-
$(".dot .title").html(title);
 
-
$(".dot .descr").html(desc);
 
-
});
 
-
});
 
-
 
-
 
-
});
 

Latest revision as of 07:18, 25 September 2013