Difference between revisions of "Team:Freiburg/PaP/ScienceFair"

(Blanked the page)
 
(25 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Freiburg/CSS}}
 
{{Freiburg/Menubar}}
 
{{Freiburg/wiki_content_start}}
 
  
<html>
 
<style>
 
 
 
 
/* ====================== Define CSS-slider =================== */
 
 
@media only screen and (max-width: 620px){
 
    #slider{
 
        display: none;
 
    }
 
}
 
 
@media only screen and (min-width: 621px){
 
 
/* code adapted from http://www.smashingmagazine.com/2012/04/pure-css3-cycling-slideshow/*/
 
 
#slider {
 
  background: #000;
 
  box-shadow: 1px 1px 5px rgba(0,0,0,0.7);
 
  height: 338px;
 
  width: 600px;
 
  margin: 40px auto 0;
 
  overflow: visible;
 
  position: relative;
 
}
 
 
/* hides everything outside the slider box */
 
#mask {
 
  overflow: hidden;
 
  height: 340px;
 
}
 
 
/* initialize position for positioning images outside the slider */
 
#slider ul {
 
  margin: 0;
 
  padding: 0;
 
  position: relative;
 
}
 
 
/* define image properties and position them outside the slider mask */
 
#slider li {
 
  width: 600px;  /* Width Image */
 
  height: 338px; /* Height Image */
 
  position: absolute;
 
  right: 0; /* Original Position - Outside of the Slider */
 
  list-style: none;
 
}
 
/* scale the images s.t. they fit into the mask */
 
#slider li a img{
 
  width: 600px;
 
  height: 338px;
 
}
 
 
/* DEFINITIONS */
 
/* for each image an own cycle has to be created as they are have to cycle all together */
 
 
#slider li.firstanimation {
 
  -moz-animation: cycle 20s linear infinite;
 
  -webkit-animation: cycle 20s linear infinite;
 
}
 
 
#slider li.secondanimation {
 
  -moz-animation: cycletwo 20s linear infinite;
 
  -webkit-animation: cycletwo 20s linear infinite;}
 
 
#slider li.thirdanimation {
 
  -moz-animation: cyclethree 20s linear infinite;
 
  -webkit-animation: cyclethree 20s linear infinite;}
 
 
#slider li.fourthanimation {
 
  -moz-animation: cyclefour 20s linear infinite;
 
  -webkit-animation: cyclefour 20s linear infinite;}
 
 
/* ANIMATION */
 
 
/* for firefox &amp; chrome */
 
 
@-moz-keyframes cycle {
 
  0%  { right: 0px; } /* When you start the slide, the first image is already visible */
 
  5%  { right: 0px; } /* Original Position */
 
  20% { right: 0px; opacity:1; z-index:0; } /* From 4% to 16 % = for 3 seconds the image is visible */
 
  25% { right: 605px; opacity: 0; z-index: 0; } /* From 16% to 20% = for 1 second exit image */
 
  26% { right: -605px; opacity: 0; z-index: -1; } /* Return to Original Position */
 
  90% { right: -605px; opacity: 0; z-index: 0; }
 
  95% { right: -605px; opacity: 0; } /* From 96% to 100% = for 1 second enter image*/
 
  100%{ right: 0px; opacity: 1; }
 
}
 
 
@-moz-keyframes cycletwo {
 
  0%  { right: -605px; opacity: 0; } /* Original Position */
 
  20% { right: -605px; opacity: 0; }/* Starts moving after 16% to this position */
 
  25% { right: 0px; opacity: 1; }
 
  30% { right: 0px; opacity: 1; }  /* From 20% to 24% = for 1 second enter image*/
 
  45% { right: 0px; opacity: 1; z-index: 0; }  /* From 24% to 36 % = for 3 seconds the image is visible */
 
  50% { right: 605px; opacity: 0; z-index: 0; } /* From 36% to 40% = for 1 second exit image */
 
  51% { right: -605px; opacity: 0; z-index: -1; }  /* Return to Original Position */
 
  100%{ right: -605px; opacity: 0; z-index: -1; }
 
}
 
 
@-moz-keyframes cyclethree {
 
  0%  { right: -605px; opacity: 0; }
 
  45% { right: -605px; opacity: 0; }
 
  50% { right: 0px; opacity: 1; }
 
  55% { right: 0px; opacity: 1; }
 
  70% { right: 0px; opacity: 1; }
 
  75% { right: 605px; opacity: 0; z-index: 0; }
 
  76% { right: -605px; opacity: 0; z-index: -1; }
 
  100%{ right: -605px; opacity: 0; z-index: -1; }
 
}
 
 
@-moz-keyframes cyclefour {
 
  0%  { right: -605px; opacity: 0; }
 
  70% { right: -605px; opacity: 0; }
 
  75% { right: 0px; opacity: 1; }
 
  80% { right: 0px; opacity: 1; }
 
  95% { right: 0px; opacity: 1; z-index: 0; }
 
  100%{ right: 605px; opacity: 0; z-index: 0; }
 
}
 
 
 
/* once again for Safari */
 
@-webkit-keyframes cycle {
 
  0%  { right: 0px; } /* When you start the slide, the first image is already visible */
 
  5%  { right: 0px; } /* Original Position */
 
  20% { right: 0px; opacity:1; z-index:0; } /* From 4% to 16 % = for 3 seconds the image is visible */
 
  25% { right: 605px; opacity: 0; z-index: 0; } /* From 16% to 20% = for 1 second exit image */
 
  26% { right: -605px; opacity: 0; z-index: -1; } /* Return to Original Position */
 
  90% { right: -605px; opacity: 0; z-index: 0; }
 
  95% { right: -605px; opacity: 0; } /* From 96% to 100% = for 1 second enter image*/
 
  100%{ right: 0px; opacity: 1; }
 
}
 
 
@-webkit-keyframes cycletwo {
 
  0%  { right: -605px; opacity: 0; } /* Original Position */
 
  20% { right: -605px; opacity: 0; }/* Starts moving after 16% to this position */
 
  25% { right: 0px; opacity: 1; }
 
  30% { right: 0px; opacity: 1; }  /* From 20% to 24% = for 1 second enter image*/
 
  45% { right: 0px; opacity: 1; z-index: 0; }  /* From 24% to 36 % = for 3 seconds the image is visible */
 
  50% { right: 605px; opacity: 0; z-index: 0; } /* From 36% to 40% = for 1 second exit image */
 
  51% { right: -605px; opacity: 0; z-index: -1; }  /* Return to Original Position */
 
  100%{ right: -605px; opacity: 0; z-index: -1; }
 
}
 
 
@-webkit-keyframes cyclethree {
 
  0%  { right: -605px; opacity: 0; }
 
  45% { right: -605px; opacity: 0; }
 
  50% { right: 0px; opacity: 1; }
 
  55% { right: 0px; opacity: 1; }
 
  70% { right: 0px; opacity: 1; }
 
  75% { right: 605px; opacity: 0; z-index: 0; }
 
  76% { right: -605px; opacity: 0; z-index: -1; }
 
  100%{ right: -605px; opacity: 0; z-index: -1; }
 
}
 
 
@-webkit-keyframes cyclefour {
 
  0%  { right: -605px; opacity: 0; }
 
  70% { right: -605px; opacity: 0; }
 
  75% { right: 0px; opacity: 1; }
 
  80% { right: 0px; opacity: 1; }
 
  95% { right: 0px; opacity: 1; z-index: 0; }
 
  100%{ right: 605px; opacity: 0; z-index: 0; }
 
}
 
 
/* PROGRESS BAR */
 
 
.progress-bar {
 
  position: relative;
 
  top: -10px;
 
  width: 680px;
 
  height: 5px;
 
  background: #000;
 
  -moz-animation: fullexpand 20s ease-out infinite;
 
  -webkit-animation: fullexpand 20s ease-out infinite;
 
}
 
 
/* ANIMATION BAR */
 
 
@-moz-keyframes fullexpand {
 
  /* In these keyframes, the progress-bar is stationary */
 
  0%, 25%, 50%, 75%, 100% { width: 0%; opacity: 0; }
 
 
  /* In these keyframes, the progress-bar starts to come alive */
 
  5%, 30%, 55%, 80% { width: 0%; opacity: 0.3; }
 
 
  /* In these keyframes, the progress-bar moves forward for 3 seconds */
 
  20%, 45%, 70%, 95% { width: 100%; opacity: 0.7; }
 
 
  /* In these keyframes, the progress-bar has finished his path */
 
  21%, 46%, 71%, 96% { width: 100%; opacity: 0.3; }
 
 
  /* In these keyframes, the progress-bar will disappear and then resume the cycle */
 
  22%, 47%, 72%, 97% { width: 100%; opacity: 0; }
 
}
 
 
@-webkit-keyframes fullexpand {
 
  /* In these keyframes, the progress-bar is stationary */
 
  0%, 25%, 50%, 75%, 100% { width: 0%; opacity: 0; }
 
 
  /* In these keyframes, the progress-bar starts to come alive */
 
  5%, 30%, 55%, 80% { width: 0%; opacity: 0.3; }
 
 
  /* In these keyframes, the progress-bar moves forward for 3 seconds */
 
  20%, 45%, 70%, 95% { width: 100%; opacity: 0.7; }
 
 
  /* In these keyframes, the progress-bar has finished his path */
 
  21%, 46%, 71%, 96% { width: 100%; opacity: 0.3; }
 
 
  /* In these keyframes, the progress-bar will disappear and then resume the cycle */
 
  22%, 47%, 72%, 97% { width: 100%; opacity: 0; }
 
}
 
 
/* TOOLTIP */
 
 
 
#slider .tooltip {
 
  background: rgba(0,0,0,0.7);
 
  z-index: 9000;
 
  width: 300px;
 
  height: 60px;
 
  position: relative;
 
  top: 0;
 
  -moz-transition: all 0.3s ease-in-out;
 
  -webkit-transition: all 0.3s ease-in-out;
 
}
 
 
#slider .tooltip h1 {
 
  color: #fff;
 
  font-size: 24px;
 
  font-weight: 300;
 
  line-height: 60px;
 
  padding: 0 0 0 10px;
 
}
 
 
#slider li#first:hover .tooltip,
 
#slider li#second:hover .tooltip,
 
#slider li#third:hover .tooltip,
 
#slider li#fourth:hover .tooltip {
 
  top: -120px;
 
}
 
 
/* end of media query - dont delete */
 
}
 
 
/* =================== END of CSS-slider =================== */
 
 
 
 
</style>
 
</html>
 
 
 
<html>
 
<!-- Labjournal content goes in here -->
 
 
 
<div class="image_box">
 
<div class="container">
 
  <div id="content-slider">
 
      <div id="slider">  <!-- Slider container -->
 
        <div id="mask">  <!-- Mask -->
 
 
        <ul>
 
        <li id="first" class="firstanimation">  <!-- ID for tooltip and class for animation -->
 
        <a href="#"> <img src="https://static.igem.org/mediawiki/2015/f/fb/Freiburg_files-2015-07-11_12.35.40.jpg" alt="Cougar"/> </a>
 
        <div class="tooltip"> <h1>Preparations</h1> </div>
 
        </li>
 
 
        <li id="second" class="secondanimation">
 
        <a href="#"> <img src="https://static.igem.org/mediawiki/2015/c/cb/Freiburg_files-2015-07-10_17.50.59.jpg" alt="Lions"/> </a>
 
        <div class="tooltip"> <h1>Explaining</h1> </div>
 
        </li>
 
 
        <li id="third" class="thirdanimation">
 
        <a href="#"> <img src="https://static.igem.org/mediawiki/2015/8/8a/Freiburg_files-2015-07-10_15.47.37.jpg" alt="Snowalker"/> </a>
 
        <div class="tooltip"> <h1>Take a look at DNA</h1> </div>
 
        </li>
 
 
        <li id="fourth" class="fourthanimation">
 
        <a href="#"> <img src="https://static.igem.org/mediawiki/2015/2/24/Freiburg_files-img_0353_kopie.jpg" alt="Howling"/> </a>
 
        <div class="tooltip"> <h1>Presentation</h1> </div>
 
        </li>
 
 
        </div>  <!-- End Mask -->
 
        <div class="progress-bar"></div>  <!-- Progress Bar -->
 
      </div>  <!-- End Slider Container -->
 
  </div>
 
</div>
 
 
</div>
 
     
 
<div class="content_box">
 
<h1 class="sectionedit1">Freiburg Science Fair - Inspire the public for science</h1>
 
<div class="level1">
 
<p>
 
This year we had the great opportunity to inspire the public for biology at the science fair that took place the central square in Freiburg, called the „Münsterplatz“. We tried to explain in a simple way the key of our lifes: DNA - the genetic information. One of our goals was to bring people in touch with this molecule. On two hot summer days in July, our team helped curious visitors to extract DNA from bananas and tomatos.
 
Children and elderly people were overwhelmed by the simple but fascinating experiment at our iGEM booth. We offered an easy but highly visual experiment of showing the hidden world of genetics.
 
We also saw it as our duty to spread the idea of the iGEM competition and to present our project -the DiaCHIP- to the visitors of the science fair. Therefore we had an interview on stage together with a local radio station. We used the chance to inform people on synthetic biology and about iGEM in particular.
 
</p>
 
</div>
 
<p>
 
Here we provide a simple protocol for DNA isolation from fruits:
 
</p>
 
<p>
 
<em class="u">Material:</em>
 
</p>
 
<ul>
 
<li class="level1"><div class="li"> Lysis buffer:  5 g NaCl, 50 ml dishwashing detergent (the use of different colored dishwashing detergent fascinates the experimenter), 450 ml Water</div>
 
</li>
 
<li class="level1"><div class="li"> 70% - 99% ethanol (ice cold)</div>
 
</li>
 
</ul>
 
<p>
 
<em class="u">Workflow:</em>
 
</p>
 
<ul>
 
<li class="level1"><div class="li"> smash one half of a banana with a fork within a beaker</div>
 
</li>
 
<li class="level1"><div class="li"> add approximately 25 ml of Lysis buffer and stir the solution with the fork, so that you get a more or less homogenous solution</div>
 
</li>
 
<li class="level1"><div class="li"> filter the solution through a paper filter into a new beaker to get rid of the crude cell fragments </div>
 
</li>
 
<li class="level1"><div class="li"> put 1-2 ml of the filtered solution into a test-tube</div>
 
</li>
 
<li class="level1"><div class="li"> slowly pipette the ice cold ethanol into the test-tube</div>
 
</li>
 
<li class="level1"><div class="li"> two phases of alcohol and water are formed with precipitated DNA being visible in the alcohol phase</div>
 
</li>
 
</ul>
 
<p>
 
</div>
 
 
 
</html>
 
<!-- Labjournal content ends here -->
 
{{Freiburg/wiki_content_end}}
 

Latest revision as of 01:34, 12 September 2015