Difference between revisions of "Team:Warwick/Human Practices"

(Prototype team page)
 
m
Line 1: Line 1:
{{Warwick}}
+
<html lang="en">
<html>
+
<head>
 +
<meta charset="UTF-8">
 +
<link rel="stylesheet" href="https://2018.igem.org/Team:Warwick/CSS?action=raw&ctype=text/css">
 +
<link rel="stylesheet" href="https://2018.igem.org/Team:Warwick/CSS/Boats?action=raw&ctype=text/css">
 +
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  
<div class="column full_size judges-will-not-evaluate">
+
<script>
<h3>★  ALERT! </h3>
+
function changeNavBar(navbarSelection){
<p>This page is used by the judges to evaluate your team for the <a href="https://2018.igem.org/Judging/Medals">medal criterion</a> or <a href="https://2018.igem.org/Judging/Awards"> award listed below</a>. </p>
+
<p> Delete this box in order to be evaluated for this medal criterion and/or award. See more information at <a href="https://2018.igem.org/Judging/Pages_for_Awards"> Instructions for Pages for awards</a>.</p>
+
</div>
+
  
 +
var bottnav = document.getElementById("BottNav");
  
<div class="clear"></div>
+
$("#BottNav").hide().slideDown(300);
  
 +
switch (navbarSelection){
  
 +
case 0:
 +
bottnav.innerHTML = "<li onclick='ProjectBreakdown()'><span>Project Breakdown</span></li><li onclick='Medals()'><span>Medals</span></li><li onclick='BioBricks()'><span>BioBricks</span></li>";
 +
bottnav.style.marginLeft = "25%"
 +
bottnav.style.background = 'linear-gradient(to right, white, #e6fefe)';
 +
break;
 +
case 1:
 +
bottnav.innerHTML = "<li onclick='Interlab()'><span>Interlab</span></li><li onclick='Modelling()'><span>Modelling</span></li><li onclick='LabBooks()'><span>Lab Books</span></li>";
 +
bottnav.style.marginLeft = "40%"
 +
bottnav.style.background = 'linear-gradient(to right, #e6fefe, #d8fdfd)';
 +
break;
 +
case 2:
 +
bottnav.innerHTML = "<li onclick='HumanPractices()'><span>Integrated Human Practices</span></li><li onclick='Outreach()'><span>Outreach</span></li>";
 +
bottnav.style.marginLeft = "55%"
 +
bottnav.style.background = 'linear-gradient(to right, #d8fdfd, #bbf0f3)';
 +
break;
 +
case 3:
 +
bottnav.innerHTML = "<li onclick='MeetTheTeam()'><span>Meet the Team</span></li><li onclick='Attributions()'><span>Attributions</span></li>";
 +
bottnav.style.marginLeft = "70%"
 +
bottnav.style.background = 'linear-gradient(to right, #bbf0f3, #85e4e9)';
 +
break;
 +
case 4:
 +
bottnav.innerHTML = "<li><span><a href='mailto:igem@warwick.ac.uk'>iGEM@warwick.ac.uk</a></span></li><li id='scrollToBottom' onclick='scrollToFooter()'><span>Social Media</span></li>";
 +
bottnav.style.marginLeft = "85%";
 +
bottnav.style.background = 'linear-gradient(to right, #85e4e9, #02c9d0)';
 +
break;
 +
}
 +
}
  
<div class="column full_size">
+
var amountToTurn = 0;
 +
var previousTeam = 0;
  
<h1>Human Practices</h1>
+
function rotate(newTeam){
<p>
+
dif  = newTeam - previousTeam;
At iGEM we believe societal considerations should be upfront and integrated throughout the design and execution of synthetic biology projects. “Human Practices” refers to iGEM teams’ efforts to actively consider how the world affects their work and the work affects the world. Through your Human Practices activities, your team should demonstrate how you have thought carefully and creatively about whether your project is responsible and good for the world. We invite you to explore issues relating (but not limited) to the ethics, safety, security, and sustainability of your project, and to show how this exploration feeds back into your project purpose, design and execution.
+
if(dif == 1 || dif == -2){
</p>
+
amountToTurn += 120;
 +
}
 +
else if(dif == -1 || dif == 2){
 +
amountToTurn -= 120;
 +
}
  
 +
    $("#BOIStriangle").css('transform', 'rotate(' + amountToTurn + 'deg)');
 +
    $("#BOISContent").css('transform', 'rotate(' + (-1*amountToTurn) + 'deg)');
 +
    $("#bioIMG").css('transform', 'rotate(' + (-1*amountToTurn) + 'deg)');
 +
$("#orgIMG").css('transform', 'rotate(' + (-1*amountToTurn) + 'deg)');
 +
    $("#inorgIMG").css('transform', 'rotate('+ (-1*amountToTurn) + 'deg)');
  
 +
    h3content = $("#BCTitle");
 +
    pcontent = $("#BCText");
  
<p>For more information, please see the <a href="https://2018.igem.org/Human_Practices">Human Practices Hub</a>. There you will find:</p>
+
    switch(newTeam){
+
    case 0:
<ul>
+
    h3content.html("Biological");
<li> an <a href="https://2018.igem.org/Human_Practices/Introduction">introduction</a> to Human Practices at iGEM </li>
+
    pcontent.html("Riboswitches used to find RNA from legionella allowing quick confirmation of the presence of the live bacteria.");
<li>tips on <a href="https://2018.igem.org/Human_Practices/How_to_Succeed">how to succeed</a> including explanations of judging criteria and advice about how to conduct and document your Human Practices work</li>
+
    break;
<li>descriptions of <a href="https://2018.igem.org/Human_Practices/Examples">exemplary work</a> to inspire you</li>
+
    case 1:
<li>links to helpful <a href="https://2018.igem.org/Human_Practices/Resources">resources</a></li>
+
h3content.html("Organic");
<li>And more! </li>
+
    pcontent.html("Utilising bacteria, specifically E.Coli, to degrade Oestregen from water to help out wildlife.");
</ul>
+
    break;
+
    case 2:
 +
h3content.html("Inorganic");
 +
    pcontent.html("Utilisting the lead absorbing properties of B.Subtilis bacteria to collect lead from water and with a newly injected gas vesicle gene to make the bacteria float ot the surface for easy collection.");
 +
    break;
 +
    }
  
 +
    previousTeam = newTeam;
 +
}
  
 +
function reset(){
 +
$("#BottNav").hide();
 +
}
 +
                </script>
  
 +
                <script>
 +
function scrollToFooter(){
 +
    $('html, body').animate({scrollTop: '10000px'}, 5000);
 +
}
  
<p>On this page, your team should document all of your Human Practices work and activities. You should write about the Human Practices topics you considered in your project, document any activities you conducted to explore these topics (such as engaging with experts and stakeholders), describe why you took a particular approach (including referencing any work you built upon), and explain if and how you integrated takeaways from your Human Practices work back into your project purpose, design and/or execution. </p>
+
function MeetTheTeam(){
+
window.location = 'https://2018.igem.org/Team:Warwick/theTeam.html';
<p>If your team has gone above and beyond in work related to safety, then you should document this work on your Safety wiki page and provide a description and link on this page. If your team has developed education and public engagement efforts that go beyond a focus on your particular project, and for which would like to nominate your team for the Best Education and Public Engagement Special Prize, you should document this work on your Education and Education wiki page and provide a description and link here. </p>
+
}
</div>
+
+
<div class="clear"></div>
+
  
+
function Attributions(){
<div class="column full_size">
+
window.location = 'https://2018.igem.org/Team:Warwick/Attributions'
<div class="highlight decoration_background">
+
}
<p>The iGEM judges will review this page to assess whether you have met the Silver and/or Gold medal requirements based on the Integrated Human Practices criteria listed below. If you nominate your team for the <a href="https://2018.igem.org/Judging/Awards">Best Integrated Human Practices Special Prize</a> by filling out the corresponding field in the <a href="https://2018.igem.org/Judging/Judging_Form">judging form</a>, the judges will also review this page to consider your team for that prize.
+
</p>
+
</div>
+
</div>
+
  
<div class="clear extra_space"></div>
+
function HumanPractices(){
 +
window.location = 'https://2018.igem.org/Team:Warwick/Human_Practices'
 +
}
  
 +
function Collaborations(){
 +
window.location = 'https://2018.igem.org/Team:Warwick/Collaborations'
 +
}
  
 +
function ProjectBreakdown(){
 +
        window.location = 'https://2018.igem.org/Team:Warwick/ProjectBreakdown'
 +
}
  
<div class="column full_size">
+
function BioBricks(){
+
        window.location = 'https://2018.igem.org/Team:Warwick/BioBricks'
<h3>Silver Medal Criterion #3</h3>
+
}
<p>Convince the judges you have thought carefully and creatively about whether your work is responsible and good for the world. Document how you have investigated these issues and engaged with your relevant communities, why you chose this approach, and what you have learned. Please note that surveys will not fulfill this criteria unless you follow scientifically valid methods. </p>
+
  
 +
function Medals(){
 +
        window.location = 'https://2018.igem.org/Team:Warwick/Medals'
 +
}
  
<h3>Gold Medal Criterion #1</h3>
+
function Interlab(){
<p>Expand on your silver medal activity by demonstrating how you have integrated the investigated issues into the purpose, design and/or execution of your project. Document how your project has changed based upon your human practices work.
+
        window.location = 'https://2018.igem.org/Team:Warwick/InterLab'
</p>
+
}
</div>
+
  
 +
function Modelling(){
 +
        window.location = 'https://2018.igem.org/Team:Warwick/Model'
 +
}
  
 +
function Outreach(){
 +
        window.location = 'https://2018.igem.org/Team:Warwick/Outreach'
 +
}
 +
</script>
  
<div class="clear extra_space"></div>
+
<script>
 +
$(function () {
 +
  $(document).scroll(function () {
 +
    $nav = $("#Navbar");
 +
    $nav.toggleClass('scrolled', $(this).scrollTop() > $nav.height());
 +
    $("#TopNav").toggleClass("TopNavsscrolled", $(this).scrollTop() > $nav.height());
 +
    $("#topnav0").toggleClass("topnav0scrolled", $(this).scrollTop() > $nav.height());
 +
    $("#topnav1").toggleClass("topnav1scrolled", $(this).scrollTop() > $nav.height());
 +
    $("#topnav2").toggleClass("topnav2scrolled", $(this).scrollTop() > $nav.height());
 +
    $("#topnav3").toggleClass("topnav3scrolled", $(this).scrollTop() > $nav.height());
 +
    $("#topnav4").toggleClass("topnav4scrolled", $(this).scrollTop() > $nav.height());
 +
  });
 +
});
  
 +
</script>
 +
<title>Ripple</title>
 +
<link rel="icon" href="images/RippleLogo.ico">
  
 +
</head>
  
<div class="column full_size">
+
<body>
<h3>Best Integrated Human Practices Special Prize</h3>
+
  
<p>To compete for the Best Integrated Human Practices prize, please describe your work on this page and also fill out the description on the judging form. </p>
 
  
<p>How does your project affect society and how does society influence the direction of your project? How might ethical considerations and stakeholder input guide your project purpose and design and the experiments you conduct in the lab? How does this feedback enter into the process of your work all through the iGEM competition? Document a thoughtful and creative approach to exploring these questions and how your project evolved in the process to compete for this award!</p>
+
<div id='Navbar' onmouseleave='reset()'>
<p>You must also delete the message box on the top of this page to be eligible for this prize.</p>
+
<div id='TopNav'>
 +
<ul><!--
 +
  --><li><span class='topnavs' id='topnav0' onmouseenter="changeNavBar(0)">Project</span></li><!--
 +
  --><li><span class='topnavs' id='topnav1' onmouseenter="changeNavBar(1)">Lab Work</span></li><!--
 +
                                  --><li><span class='topnavs' id='topnav2' onmouseenter="changeNavBar(2)">Human Practices</span></li><!--
 +
  --><li><span class='topnavs' id='topnav3' onmouseenter="changeNavBar(3)">The Team</span></li><!--
 +
  --><li><span class='topnavs' id='topnav4' onmouseenter="changeNavBar(4)">Contact Us</span></li>
 +
</ul>
 +
</div>
 +
<div>
 +
<ul id='BottNav' style='display: none;'>
 +
<li><span></span></li><!--
 +
--><li><span></span></li><!--
 +
--><li><span></span></li><!--
 +
--><li><span></span></li>
 +
</ul>
 +
</div>
 +
</div>
  
</div>
+
<body>
 +
 
 +
 
 +
<div id='Navbar' onmouseleave='reset()'>
 +
<div id='TopNav'>
 +
<ul>
 +
  <li><span class='topnavs' id='topnav0' onmouseenter="changeNavBar(0)">Project</span></li><!--
 +
  --><li><span class='topnavs' id='topnav1' onmouseenter="changeNavBar(1)">Human Practices</span></li><!--
 +
  --><li><span class='topnavs' id='topnav2' onmouseenter="changeNavBar(2)">The Team</span></li><!--
 +
  --><li><span class='topnavs' id='topnav3' onmouseenter="changeNavBar(3)">Contact Us</span></li>
 +
</ul>
 +
</div>
 +
<div>
 +
<ul id='BottNav' style='display: none;'>
 +
<li><span>Meet the Team</span></li><!--
 +
--><li><span>Modelling</span></li><!--
 +
--><li><span>BioBricks</span></li><!--
 +
--><li><span>InterLab</span></li>
 +
</ul>
 +
</div>
 +
</div>
 +
 
 +
<div id='FishermanBody'>
 +
<div id='FishermanTitle'>
 +
<h1>Human Practices</h1>
 +
</div>
 +
<div id='FishermanGraphic'>
 +
<div id='frontwave' class='waves'>
 +
</div>
 +
<div id='backwave2' class='waves'>
 +
</div>
 +
<div id='backwave' class='waves'>
 +
</div>
 +
<img src='images/fisherman graphic/fishermanandboat.svg' id='fisherman'>
 +
<div id='hookdiv'>
 +
<img src='images/fisherman graphic/hook.svg' id='hook'>
 +
</div>
 +
 
 +
<div id='seaSolid'>
 +
</div>
 +
<div id='seaOpac'>
 +
<img src='images/fisherman graphic/sandL.svg' id='sandL'>
 +
<img src='images/fisherman graphic/sandR.svg' id='sandR'>
 +
 +
<img src='images/fisherman graphic/rockL.svg' id='rockL'>
 +
<img src='images/fisherman graphic/rockR.svg' id='rockR'>
 +
<img src='images/fisherman graphic/smokebubble.svg' class='smoke' id='smoke1'>
 +
<img src='images/fisherman graphic/smokebubble.svg' class='smoke' id='smoke2'>
 +
<img src='images/fisherman graphic/smokebubble.svg' class='smoke' id='smoke3'>
 +
<img src='images/fisherman graphic/smokebubble.svg' class='smoke' id='smoke4'>
 +
<img src='images/fisherman graphic/smokebubble.svg' class='smoke' id='smoke5'>
 +
<img src='images/fisherman graphic/smokebubble.svg' class='smoke' id='smoke6'>
 +
<img src='images/fisherman graphic/smokebubble.svg' class='smoke' id='smoke7'>
 +
<img src='images/fisherman graphic/smokebubble.svg' class='smoke' id='smoke8'>
 +
 
 +
<img src='images/fisherman graphic/coral.svg' id='coralL'>
 +
</div>
 +
 
 +
<img src='images/fisherman graphic/animals/dolphin.svg' id='jumpingFish'>
 +
</div>
 +
</div>
 +
 
 +
<div id='footer' style='margin-top: 315.75vw'>
 +
 +
<div id='leftFoot'>
 +
<h1 class='FooterTitle' style='margin: 15px auto'>Contact Us</h1>
 +
<img id='FooterLogo' src='images/RippleLogo.svg'>
 +
<div id='socialmedia'>
 +
<h1 style='color: white; font-weight: 300; font-size: 1.5vw; margin-left: -5%'>igem@warwick.ac.uk</h1>
 +
<br>
 +
            <a class='socialMedia' style='margin-right: 5%' href="https://www.youtube.com/channel/UCHhLKgvGJFkdSmwgGPvN9PA">
 +
            <img src="https://static.igem.org/mediawiki/2018/6/61/T--Warwick--YTRed.png" alt="YouTube">
 +
            </a>
 +
            <a class='socialMedia' style='margin-right: 5%' href="https://twitter.com/WISB_SynBioCtre">
 +
            <img src="https://static.igem.org/mediawiki/2018/f/f0/T--Warwick--Twitterlogo.png" alt="Twitter">
 +
            </a>
 +
            <a class='socialMedia' style='margin-right: -2.5%' href="https://www.instagram.com/igem_warwick/">
 +
            <img src="images/insta.png" alt="Twitter">
 +
            </a>
 +
            </div>
 +
</div>
 +
 
 +
 
 +
<div id='rightFoot'>
 +
<h1 class='FooterTitle' style='color: black'>Sponsors</h1>
 +
        <table id='theSponsors'>
 +
                <tr>
 +
                    <td>
 +
                        <img class='sponsorimages' src="images/T--Warwick--GRPIM.png">
 +
                    </td>
 +
                    <td>
 +
                        <img class='sponsorimages' src="images/T--Warwick--WSFG.png">
 +
                    </td>
 +
                    <td>
 +
                        <img class='sponsorimages' src="images/synbiocdt.png">
 +
                    </td>
 +
                </tr>
 +
                <tr>
 +
                    <td>
 +
                        <img class='sponsorimages' src="images/snapgene.png">
 +
                    </td>
 +
                    <td>
 +
                        <img class='sponsorimages' src="images/SEB.png">                        
 +
                    </td>
 +
                    <td>
 +
                        <img class='sponsorimages' src="https://static.igem.org/mediawiki/2018/f/fb/T--Warwick--NEbiolabs.png">
 +
                    </td>
 +
                </tr>
 +
            </table>
 +
            <table id='theSponsors'>
 +
                <tr>
 +
                <td class='bottomrow'>
 +
                        <img class='sponsorimages' src="https://static.igem.org/mediawiki/2018/0/0e/T--Warwick--WISB.png">
 +
                </td>
 +
                <td class='bottomrow'>
 +
                        <img class='sponsorimages' src="images/bbsrc.png">
 +
                </td>
 +
                </tr>
 +
            </table>
 +
</div>
 +
</div>
 +
 
 +
</body>
 +
</html>

Revision as of 11:52, 4 October 2018

Ripple

Human Practices