Team:Freiburg/Team/Members

From 2014.igem.org

(Difference between revisions)
 
(9 intermediate revisions not shown)
Line 1: Line 1:
{{:Team:Freiburg/Templates/html/head.html}}
{{:Team:Freiburg/Templates/html/head.html}}
 +
<!-- hier ändern https://2014.igem.org/Team:Freiburg/Project/Overview und  https://2014.igem.org/Team:Freiburg/Project/ -->
<html>
<html>
-
<p> this is team Freiburg 2014, a description will follow soon </p>
+
<style>
 +
.header-right {
 +
  background: -moz-linear-gradient(0deg, #181617 0%, #181617 10%, rgba(24, 22, 23, 0) 30%), url(https://static.igem.org/mediawiki/2014/5/5b/Freiburg2014-panorama_Thumbnail.jpg);
 +
  background: -webkit-linear-gradient(0deg, #181617 0%, #181617 10%, rgba(24, 22, 23, 0) 30%), url(https://static.igem.org/mediawiki/2014/5/5b/Freiburg2014-panorama_Thumbnail.jpg);
 +
  background: linear-gradient(90deg, #181617 0%, #181617 10%, rgba(24, 22, 23, 0) 30%), url(https://static.igem.org/mediawiki/2014/5/5b/Freiburg2014-panorama_Thumbnail.jpg);
 +
  background-size: 100% auto, 100% auto;
 +
  background-position: center center, center center;
 +
}
 +
</style>
 +
 
 +
<html lang="en">
<div class="wrapper-outer">
<div class="wrapper-outer">
   <div class="wrapper">
   <div class="wrapper">
Line 17: Line 28:
           <ul class="nav">
           <ul class="nav">
             <li class="active">
             <li class="active">
-
               <a href="#a-section1">Section 1</a>
+
               <a href="#Team-Team">Team</a>
-
              <ul>
+
-
                <li><a href="#a-section1-1">Section 1.1</a></li>
+
-
                <li><a href="#a-lists">Lists</a></li>
+
-
                <li><a href="#a-lists-unordered">Unordered</a></li>
+
-
                <li><a href="#a-lists-ordered">Ordered</a></li>
+
-
              </ul>
+
-
            </li>
+
-
            <li>
+
-
              <a href="#a-accordion">Accordion</a>
+
-
            </li>
+
-
            <li>
+
-
              <a href="#a-page-links">Links to pages</a>
+
-
            </li>
+
-
            <li>
+
-
              <a href="#a-abstract">Project Abstract</a>
+
-
            </li>
+
-
            <li>
+
-
              <a href="#a-team">The Team</a>
+
-
              <ul>
+
-
                <li><a href="#a-team-members">Team members</a></li>
+
-
                <li><a href="#a-team-instructors">Instructors</a></li>
+
-
                <li><a href="#a-team-advisor">Advisor</a></li>
+
-
              </ul>
+
             </li>
             </li>
           </ul>
           </ul>
Line 55: Line 43:
{{:Team:Freiburg/Templates/html/js.html}}
{{:Team:Freiburg/Templates/html/js.html}}
<html>
<html>
 +
<script>
 +
$(document).ready(function(){
 +
  var animating = false;
 +
  var posRecep = [200,270]; // receptorpos
 +
  var time = 0.7/300; // s/px
 +
  function selectMember(){
 +
    // just don't animate when we are currently docking
 +
    if (animating) return;
 +
    animating = true;
 +
 +
    var $this = $(this);
 +
 +
    // move docked head back
 +
    $active = $('.team-member-virus .member.active');
 +
    $active.each(function(){
 +
      var $this = $(this);
 +
      var pos = $this.data('orig-pos');
 +
      $this.css('-webkit-transform', 'translate('+pos[0]+'px,'+pos[1]+'px)');
 +
      $this.css('-ms-transform', 'translate('+pos[0]+'px,'+pos[1]+'px)');
 +
      $this.css('-o-transform', 'translate('+pos[0]+'px,'+pos[1]+'px)');
 +
      $this.css('transform', 'translate('+pos[0]+'px,'+pos[1]+'px)');
 +
      $this.attr('class', 'member');
 +
    })
 +
 +
    // set current member active
 +
    $this.attr('class', 'member active');
 +
 +
    // move head to receptor
 +
    $this.css('-webkit-transform', 'translate('+posRecep[0]+'px,'+posRecep[1]+'px)');
 +
    $this.css('-ms-transform', 'translate('+posRecep[0]+'px,'+posRecep[1]+'px)');
 +
    $this.css('-0', 'translate('+posRecep[0]+'px,'+posRecep[1]+'px)');
 +
    $this.css('transform', 'translate('+posRecep[0]+'px,'+posRecep[1]+'px)');
 +
 +
    setTimeout(function(){
 +
      // docked part
 +
 +
      // get content of member
 +
      var content = $('#data-'+$this.data('id')).html();
 +
      // apply content of member to the red cell content area
 +
      $('#member-description').html(content);
 +
 +
      // get the image url
 +
      var href = $this.find('image').attr('xlink:href');
 +
      // apply to the cellcore
 +
      $('#lecell image').attr('xlink:href', href);
 +
 +
      animating = false;
 +
 +
    }, $this.data('duration') * 1000);
 +
   
 +
  }
 +
  $('.team-member-virus .member')
 +
    .each(function(){
 +
      // set orig-pos
 +
      var $this = $(this);
 +
      var transform = $this.attr('transform');
 +
      transform = transform.match(/translate\((\d+),(\d+)\)/);
 +
      pos = [transform[1],transform[2]];
 +
      $this.data('orig-pos', pos);
 +
      $this.css('transform', 'translate('+pos[0]+'px,'+pos[1]+'px)');
 +
      // compute duration
 +
      var dist = Math.sqrt(Math.pow(posRecep[0] - pos[0],2) +
 +
        Math.pow(posRecep[1] - pos[1],2));
 +
      var dur = dist*time;
 +
      $this.css('transition-duration', dur + 's');
 +
      $this.data('duration', dur);
 +
    })
 +
    // add the click handler
 +
    .click(selectMember);
 +
});
 +
 +
</script>
<script>
<script>
// set title  
// set title  
-
$('head title').text('Members of Team Freiburg | iGEM2014');
+
$('head title').text('Project | Overview | Team Freiburg | iGEM2014');
</script>
</script>
</html>
</html>

Latest revision as of 21:04, 17 October 2014

Anne Müller

  • Age: 23
  • Studies: Biological Sciences, Applied Biosciences
  • Favorite dish and/or drink: Lasagne, Mojito
  • Favorite color and/or number: Red, 4
  • Hobbies: Showjumping, reading
  • Why iGEM?: Last years iGEM was great!

Christoph Bauer

  • Age: 25
  • Studies: Biological Sciences, Applied Biosciences
  • Favorite dish and/or drink: Spaetzle, lentils and hot dogs
  • Favorite color and/or number: 6
  • Hobbies: Sports, handball, photography, reading
  • Why iGEM?: Learn something new, implement our own idea!

Clarissa Hiltl

  • Age: 22
  • Studies: Bachelor in Biology
  • Favorite dish and/or drink: Mojito
  • Favorite color and/or number: Blue and 8
  • Hobbies: Travelling
  • Why iGEM?: Im always excited for new experiences and the possibilty to meet great people.

Dennis Zimmer

  • Age: 24
  • Studies: Biological Sciences, Immunology
  • Favorite dish and/or drink: Pancakes / Dark 'n' Stormy
  • Favorite color and/or number: Blue, 18
  • Hobbies: Beach volleyball, mountain biking, traveling
  • Why iGEM?: I think iGEM is a great opportunity to learn amazing new stuff!

Ileana Bender

  • Age: 25
  • Studies: Biological Sciences, Advanced Biology
  • Favorite color and/or number: blue, 7
  • Hobbies: reading
  • Why iGEM?: Exciting

Jialiang Lu

  • Age: 21
  • Studies: Biology
  • Favorite dish and/or drink: Roast goose, currywurst
  • Favorite color and/or number: Light blue, 7
  • Hobbies: Reading, swimming, cycling
  • Why iGEM?: Management of our own project, team work with young people

Kristoffer Weißert

  • Age: 24
  • Studies: Biological Sciences, Immunology
  • Favorite dish and/or drink: Rice pudding
  • Favorite color and/or number: Red, 77
  • Hobbies: Table tennis, singing
  • Why iGEM?: Do something besides studying, learn to organize a project.

Laura Ost

  • Age: 23
  • Studies: Bachelor in Biology
  • Favorite dish and/or drink: Flammkuchen (flame cake)
  • Favorite color and/or number: Dark green and 7
  • Hobbies: Reading
  • Why iGEM?: It fascinates me to learn about the diversity of ideas different teams came up with. Also I, as part of a great team like to develop a project from scratch.

Lisa Schmunk

  • Age: 24
  • Studies: Master of Biology; Genetics and Synthetic Biology
  • Favorite dish and/or drink: Black tea
  • Favorite color and/or number: Blue, 7
  • Hobbies: Jazz & modern dance
  • Why iGEM?: Once is not enough :)

Marc Müller

  • Age: 24
  • Studies: Biological Sciences
  • Favorite dish and/or drink: black forest cake
  • Favorite color and/or number: Green, 137635,73
  • Hobbies: sport, unicorn
  • Why iGEM?: is a great opportuninty for students to realize their dream ;)!

Max Ulbrich

  • Age: 41
  • Studied: Physics
  • Favorite dish and/or drink: Flaming Moe
  • Favorite color and/or number: Pink
  • Hobbies: Brewing, assembling microscopes, disassembling microscopes
  • Why iGEM?: Because the students need someone to look up to.

Mirja Harms

  • Age: 22
  • Studies: Biological Sciences, Immunology
  • Favorite dish and/or drink: Favorite dish and/or drink: Sun & love
  • Favorite color and/or number: red, all of the numbers
  • Hobbies: Climbing, bouldering, hiking
  • Why iGEM?: I like glowing cells!

Natalie Louis

  • Age: 25
  • Studies: Master in Applied Biosciences
  • Favorite dish and/or drink: Mussels
  • Favorite color and/or number: Blue and 4
  • Hobbies: Latin, standard and salsa dancing, hiking
  • Why iGEM?: To be able to pass on iGEM experiences of the previous years.

Nicole Gensch

  • Age: 32
  • Studied: Developmental Biology / Biotechnology
  • Favorite dish and/or drink: Self-made sandwiches and salad
  • Favorite color and/or number: Bright colors
  • Hobbies: Workout & fitness
  • Why iGEM?: I like the idea of iGEM and I was interested to see how a group of students, who did not know each other beforehand, become a team, develop their own idea of a research project and work on it.

Jan Ole Ackermann

  • Age: 25
  • Studies: Biological Sciences, Immunology
  • Favorite dish and/or drink: Pizza, green cabbage with kassler & smoothie
  • Favorite color and/or number: Blue, 8
  • Hobbies: Music, sport, reading
  • Why iGEM?: Good food! New experiences, organize an own project.

Pascal Sartor

  • Age: 25
  • Studies: Master of Biology / Microbiology
  • Favorite dish and/or drink: pizza / Cuba libre
  • Favorite color and/or number: orange / 42
  • Hobbies: biking, archery and hiking
  • Why iGEM?: I'm fascinated about the opportunity to create and shape an own project and to meet new people and to get more lab experience.

Patrick Gonschorek

  • Age: 24
  • Studies: Master in Synthetic Biology
  • Favorite dish and/or drink: Coffee
  • Favorite color and/or number: Rainbow / 100
  • Hobbies: Music
  • Why iGEM?: Can't get enough!

Patrick Heisterkamp

  • Age: 20
  • Studies: Molecular Medicine
  • Favorite dish and/or drink: Schnitzel with chips
  • Favorite color and/or number: 13
  • Hobbies: Chinese language, jogging, informatics
  • Why iGEM?: Learn something new!

Valentina Diehl

  • Age: 23
  • Studies: Biology
  • Favorite dish and/or drink: Ice Cream
  • Favorite color and/or number: Green and 42
  • Hobbies: Cooking, books and astronomy
  • Why iGEM?: Opportunity to work in a team and to gain new experiences

Wignand Mühlhäuser

  • Age: 25
  • Studies: Master in Biology
  • Favorite dish and/or drink: Steak
  • Favorite color and/or number: Cherry Berry and pi
  • Hobbies: Music
  • Why iGEM?: I really like the idea of students creating and working on their own project building something together from the bottom up.

The iGEM2014 Team Freiburg

We are the iGEM Freiburg 2014 team. This is one of our first pictures together. At that time we were real newbies and most of us had never worked in a real lab! This had changed soon...