Team:ETH Zurich/labblog/buttons
From 2014.igem.org
(Difference between revisions)
m |
|||
Line 5: | Line 5: | ||
function() | function() | ||
{ | { | ||
- | $(". | + | $(".all").click( |
function() | function() | ||
{ | { | ||
- | $(". | + | $(".dyn").show(); |
- | $(". | + | $(".param").show(); |
+ | $(".stead").show(); | ||
+ | $(".single").show(); | ||
+ | $(".diff").show(); | ||
+ | $(".error").show(); | ||
+ | $(".pop").show(); | ||
+ | $(".det").show(); | ||
+ | $(".stoc").show(); | ||
}); | }); | ||
Line 17: | Line 24: | ||
}); | }); | ||
- | $(". | + | $(".dyn").click( |
function() | function() | ||
{ | { | ||
- | $(". | + | $(".dyn").show(); |
- | $(". | + | $(".param").hide(); |
+ | $(".stead").hide(); | ||
+ | $(".single").hide(); | ||
+ | $(".diff").hide(); | ||
+ | $(".error").hide(); | ||
+ | $(".pop").hide(); | ||
+ | $(".det").hide(); | ||
+ | $(".stoc").hide(); | ||
}); | }); | ||
- | $(". | + | $(".param").click( |
function() | function() | ||
{ | { | ||
- | $(". | + | $(".dyn").hide(); |
- | $(". | + | $(".param").show(); |
+ | $(".stead").hide(); | ||
+ | $(".single").hide(); | ||
+ | $(".diff").hide(); | ||
+ | $(".error").hide(); | ||
+ | $(".pop").hide(); | ||
+ | $(".det").hide(); | ||
+ | $(".stoc").hide(); | ||
+ | }); | ||
+ | |||
+ | $(".stead").click( | ||
+ | function() | ||
+ | { | ||
+ | $(".dyn").hide(); | ||
+ | $(".param").hide(); | ||
+ | $(".stead").show(); | ||
+ | $(".single").hide(); | ||
+ | $(".diff").hide(); | ||
+ | $(".error").hide(); | ||
+ | $(".pop").hide(); | ||
+ | $(".det").hide(); | ||
+ | $(".stoc").hide(); | ||
+ | }); | ||
+ | |||
+ | $(".single").click( | ||
+ | function() | ||
+ | { | ||
+ | $(".dyn").hide(); | ||
+ | $(".param").hide(); | ||
+ | $(".stead").hide(); | ||
+ | $(".single").show(); | ||
+ | $(".diff").hide(); | ||
+ | $(".error").hide(); | ||
+ | $(".pop").hide(); | ||
+ | $(".det").hide(); | ||
+ | $(".stoc").hide(); | ||
+ | }); | ||
+ | |||
+ | $(".diff").click( | ||
+ | function() | ||
+ | { | ||
+ | $(".dyn").hide(); | ||
+ | $(".param").hide(); | ||
+ | $(".stead").hide(); | ||
+ | $(".single").hide(); | ||
+ | $(".diff").show(); | ||
+ | $(".error").hide(); | ||
+ | $(".pop").hide(); | ||
+ | $(".det").hide(); | ||
+ | $(".stoc").hide(); | ||
+ | }); | ||
+ | |||
+ | $(".error").click( | ||
+ | function() | ||
+ | { | ||
+ | $(".dyn").hide(); | ||
+ | $(".param").hide(); | ||
+ | $(".stead").hide(); | ||
+ | $(".single").hide(); | ||
+ | $(".diff").hide(); | ||
+ | $(".error").show(); | ||
+ | $(".pop").hide(); | ||
+ | $(".det").hide(); | ||
+ | $(".stoc").hide(); | ||
+ | }); | ||
+ | |||
+ | $(".pop").click( | ||
+ | function() | ||
+ | { | ||
+ | $(".dyn").hide(); | ||
+ | $(".param").hide(); | ||
+ | $(".stead").hide(); | ||
+ | $(".single").hide(); | ||
+ | $(".diff").hide(); | ||
+ | $(".error").hide(); | ||
+ | $(".pop").show(); | ||
+ | $(".det").hide(); | ||
+ | $(".stoc").hide(); | ||
+ | }); | ||
+ | |||
+ | $(".det").click( | ||
+ | function() | ||
+ | { | ||
+ | $(".dyn").hide(); | ||
+ | $(".param").hide(); | ||
+ | $(".stead").hide(); | ||
+ | $(".single").hide(); | ||
+ | $(".diff").hide(); | ||
+ | $(".error").hide(); | ||
+ | $(".pop").hide(); | ||
+ | $(".det").show(); | ||
+ | $(".stoc").hide(); | ||
+ | }); | ||
+ | |||
+ | $(".stoc").click( | ||
+ | function() | ||
+ | { | ||
+ | $(".dyn").hide(); | ||
+ | $(".param").hide(); | ||
+ | $(".stead").hide(); | ||
+ | $(".single").hide(); | ||
+ | $(".diff").hide(); | ||
+ | $(".error").hide(); | ||
+ | $(".pop").hide(); | ||
+ | $(".det").hide(); | ||
+ | $(".stoc").show(); | ||
}); | }); | ||
}); | }); | ||
</script> | </script> | ||
+ | |||
+ | <button class = "all"> View all </button> | ||
+ | <button class = "dyn"> Dynamic behavior </button> | ||
+ | <button class = "param"> Parameter fitting </button> | ||
+ | <button class = "single"> Single cell model </button> | ||
+ | <button class = "diff"> Diffusion model </button> | ||
+ | <button class = "error"> Error propagation </button> | ||
+ | <button class = "pop"> Population model </button> | ||
+ | <button class = "det"> Deterministic model </button> | ||
+ | <button class = "stoc"> Stochastic model </button> | ||
+ | <button class = "stead"> Steady states </button> | ||
+ | |||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="200" height="200" viewBox="0 0 1000 1000" enable-background="new 0 0 300 200" xml:space="preserve"> | <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="200" height="200" viewBox="0 0 1000 1000" enable-background="new 0 0 300 200" xml:space="preserve"> |
Revision as of 09:07, 9 July 2014