Skip to content
Snippets Groups Projects
Commit 456dc1b9 authored by Hiroyasu Kaji's avatar Hiroyasu Kaji
Browse files

Merge branch 'easter-egg' into 'main'

done

See merge request !11
parents 3dde4e8e 1082925a
No related branches found
No related tags found
1 merge request!11done
Pipeline #348199 passed
static/images/3119186.png

1.31 KiB

......@@ -54,7 +54,7 @@ filter: brightness(70%);
<h1 id="member-name">Doug</h1>
<h4 id="member-role">Moral Support</h4>
<!-- <h2>About me</h2> -->
<p id="description">Hi, I’m Doug, Team ASIJ_Tokyo’s E. coli mascot! My peritrichous flagella helped me move and due to my simple ability to cultivate, Team ASIJ_Tokyo chose me to conduct experiments with. My genome is easily manipulated and well-known, which makes me ideal to work with in labs. However, even small amounts of myself can cause infections so Team ASIJ_Tokyo always handles me with care. It’s nice to meet you all, and I hope we can work together in future labs!</p>
<p><a id="description">Hi, I’m Doug, Team ASIJ_Tokyo’s E. coli mascot! My peritrichous flagella helped me move and due to my simple ability to cultivate, Team ASIJ_Tokyo chose me to conduct experiments with. My genome is easily manipulated and well-known, which makes me ideal to work with in labs. However, even small amounts of myself can cause infections so Team ASIJ_Tokyo always handles me with care. It’s nice to meet you all, and I hope we can work together in future labs</a><a onclick="surprise()" id="easter-egg">!</a></p>
<a><strong>Favorite Conbini Food: </strong><a id="fav-conbini">Everything!</a></a>
</div>
<script>
......@@ -117,7 +117,7 @@ filter: brightness(70%);
"Research, Education"
];
var descriptions = [
"Hi, I’m Doug, Team ASIJ_Tokyo’s E. coli mascot! My peritrichous flagella helps me move and due to my simple ability to cultivate, Team ASIJ_Tokyo chose me to conduct experiments with. My genome can be easily manipulated and is well-known, which makes me ideal to work with in labs. However, even small amounts of myself can cause infections so Team ASIJ_Tokyo always handles me with care. It’s nice to meet you all, and I hope we can work together in future labs!",
"Hi, I’m Doug, Team ASIJ_Tokyo’s E. coli mascot! My peritrichous flagella helps me move and due to my simple ability to cultivate, Team ASIJ_Tokyo chose me to conduct experiments with. My genome can be easily manipulated and is well-known, which makes me ideal to work with in labs. However, even small amounts of myself can cause infections so Team ASIJ_Tokyo always handles me with care. It’s nice to meet you all, and I hope we can work together in future labs",
"Hey :)! My name is Kai and I’m a freshman / super senior. This is my third year being able to be a part of the iGEM community. I’m from New York and Tokyo, and I’m living in Texas now as a university student. I’m interested in biology–specifically cell biology and genetics–and I like how living systems give us an abundance of mechanisms to explore, while keeping everything that we observe very tangible and meaningful. ",
"Hello, I’m Ai! I’m a senior and this is my second year in iGEM. I’m Japanese, but I lived in the US for a while. It’s been a true pleasure to be part of an evolving group that takes up missions for the benefit of others. This might seem out of place, but I’m interested in magic. By combining biology, engineering, outreach, and working with peers as eager as me, we make magic. It’s exciting to watch all the parts come together to create meaningful change. I hope to share this magic through human practices. ",
"My name is Aki, I am a senior at ASIJ, and this is my first season in iGEM. I was born in Tokyo, but moved when I was four, spending eleven and a half years in London and New York before returning to Japan. I’m fascinated by how much we don’t know about our surroundings, and I joined iGEM because I’m interested in the ways we can influence these unknowns to find out more about them. I’m extremely passionate about biology and chemistry, and I’m self-studying organic chemistry this year, hoping I can implement what I learn into synthetic biology. ",
......@@ -173,11 +173,16 @@ filter: brightness(70%);
];
var slideIndex = 1;
var images = document.getElementsByClassName("slideImage");
var easterEgg = document.getElementById("easter-egg");
function changeSlide(n) {
showSlide(slideIndex += n);
}
document.onkeydown = checkKey;
function surprise(){
document.body.style.cursor = 'url("https://static.igem.wiki/teams/4738/wiki/team/cursor-new.png") 2 2, auto';
}
function checkKey(e) {
e = e || window.event;
......@@ -191,12 +196,19 @@ filter: brightness(70%);
}
function showSlide(n){
if (n > images.length){
slideIndex = 1;
}
if (n < 1){
slideIndex = images.length;
}
if (slideIndex ===1){
easterEgg.style.display = "inline-block";
}
else{
easterEgg.style.display = "none";
}
for (var i = 0; i < images.length; i++) {
images[i].style.display = "none";
images[i].style.opacity = 0;
......@@ -213,6 +225,7 @@ filter: brightness(70%);
showSlide(slideIndex);
</script>
<style>
.slideImage{
width: 80%;
......@@ -260,6 +273,7 @@ filter: brightness(70%);
position:relative;
/* background-color: aquamarine; */
}
</style>
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment