Difference between revisions of "Team:Jiangnan/Public Engagement"

(Prototype team page)
 
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Jiangnan}}
+
 
 
<html>
 
<html>
  
<div class="column full_size judges-will-not-evaluate">
+
<link rel="stylesheet" href="https://2018.igem.org/Team:Jiangnan/CSSmaterializecss?action=raw&ctype=text/css">
<h3>★  ALERT! </h3>
+
<link rel="stylesheet" href="https://2018.igem.org/Team:Jiangnan/CSSanimatecss?action=raw&ctype=text/css">
<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>
+
<style type="text/css">
<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>
+
        #home_logo, #sideMenu { display:none; }
</div>
+
        #HQ_page p{text-align:inherit;font-size:inherit;}
 +
html{width:100%;height:100%;background:white; list-style:none;}
 +
        #top_menu_under{height:auto;}
 +
#globalWrapper,#HQ_page,#bodyContent,#mw-content-text{height:100%;}
 +
#sideMenu, #top_title, .patrollink  {display:none;}
 +
#content { margin-left:0px;margin-top:-5px; padding:0px; width:100%;height:100%;}
 +
body {background-color:white;height:100%;}
 +
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
 +
        ul, li{list-style:none;}
 +
        #description p{text-align:center;}
 +
        .mw-content-ltr ul{margin:0px}
 +
h4 {
 +
font-family: Arial,sans-serif;
 +
font-weight: 100;
 +
text-align: center;
 +
}
  
 +
p{
 +
font-size: 1.2em;
 +
}
  
<div class="clear"></div>
+
.JTrow{
 +
margin-top: 5%;
 +
margin-bottom:5%;
 +
margin-left: 10%;
 +
margin-right: 10%;
 +
text-align: center;
 +
}
  
 +
.JTp{
 +
    display: block;
 +
    margin-block-start: 0.2em;
 +
    margin-block-end: 0.2em;
 +
    margin-inline-start: 0px;
 +
    margin-inline-end: 0px;
 +
}
 +
                .JFigure{text-align: center !important;font-size: 0.8em;}
 +
</style>
 +
        <style type="text/css">
 +
.Jnav{position: fixed;top: 17px;opacity: 1;background-color: rgba(255, 255, 255, 0.2); width: 100%;z-index:999;}
 +
.Jnav a{text-decoration: none!important;color:#039be5;}
 +
.Jnavtitle{float: right;width: 10%;text-align: center;padding: 1em 0;}
 +
.Jnavdrag{position: relative;width: 100%;}
 +
.Jnavdrag>ul{position: absolute;top: 0;width: 100%;border-radius: 5px;background-color: white;transition: all .4s ease-in-out;opacity: 0;}
 +
</style>
 +
        <script type="text/javascript">
 +
function Jnavshow(obj){
 +
var ul = obj.getElementsByTagName("ul");
 +
ul = ul[0];
 +
ul.style["opacity"] = 1;
 +
}
 +
function Jnavhide(obj){
 +
var ul = obj.getElementsByTagName("ul");
 +
ul = ul[0];
 +
ul.style["opacity"] = 0;
 +
}
 +
</script>
 +
        <style>
 +
        .Jcarousel{
 +
width: 100%;
 +
height: 700px;
 +
}
  
 +
.Jcarousel ul{
 +
width: 100%;
 +
position: relative;
 +
padding: 0;
 +
list-style-type: none;
 +
}
  
<div class="column full_size">
+
.Jcarousel li{
 +
position: absolute;
 +
}
  
<h1>Human Practices: Education and Public Engagement Special Prize</h1>
+
.Jcarousel li>img{
 +
width: 800px;
 +
height: 600px;
 +
}
 +
</style>
 +
<script src="https://2018.igem.org/Team:Jiangnan/JSjquery?action=raw&ctype=text/javascript"></script>
 +
<script type="text/javascript">
 +
$(document).ready(function(){
 +
(function($){
 +
var Carousel = function(con){
 +
var self = this;
 +
this.con = con;
 +
this.conItem = con.find("ul");
 +
this.conItems = this.conItem.find("li");
 +
this.conItemFirst = this.conItems.first();
 +
this.conItemLast = this.conItems.last();
 +
this.settings = {
 +
width: 800,
 +
height:600,
 +
speed:500,
 +
autoPlay:true,
 +
delay:1000,
 +
gap:30,
 +
opacityDiff:0.1,
 +
};
 +
$.extend(this.settings, this.getSetting());
 +
this.setItemProperty();
 +
this.conItems.each(function(){
 +
$(this).on("click", function(){
 +
self.move();
 +
})
 +
});
 +
}
  
<p>Innovative educational tools and public engagement activities have the ability to discuss the science behind synthetic biology, spark new scientific curiosity and establish a public dialogue about synthetic biology from voices and views outside the lab. </p>
+
Carousel.prototype ={
 +
move:function(){//move right;
 +
var _this = this;
 +
var zIndex = [];
 +
this.conItems.each(function(){
 +
var pre = $(this).prev().get(0)? $(this).prev():_this.conItemLast;
 +
zIndex.push(pre.css("zIndex"));
 +
$(this).animate({
 +
top:pre.css("top"),
 +
left:pre.css("left"),
 +
opacity:pre.css("opacity")
 +
}, _this.settings.speed);
 +
});
 +
this.conItems.each(function(i){
 +
$(this).css({zIndex:zIndex[i]});
 +
})
 +
},
 +
setItemProperty:function(){
 +
var _this = this;
 +
this.conItems.each(function(i){
 +
var o = 1.0- _this.setItemProperty.opacityDiff*i;
 +
 +
$(this).css({
 +
width:_this.settings.width,
 +
height:_this.settings.height,
 +
zIndex:-i,
 +
left:i*_this.settings.gap,
 +
top:i*_this.settings.gap,
 +
opacity:o
 +
})
 +
})
 +
},
 +
getSetting:function(){
 +
return "";
 +
}
 +
}
  
<p>On this page, your team should document your Education and Public Engagement work and activities. Describe your team’s efforts to include more people in shaping synthetic biology (such as creating or building upon innovative educational tools and/or public engagement activities to establish two-way dialogue with new communities, and/or engaging new groups in discussions about synthetic biology and public values). Describe your approach, why you chose it, and what was learned by everyone involved (including yourselves!).</p>
+
Carousel.init = function(carousel){
 +
var _this = this;
 +
carousel.each(function(){
 +
new _this($(this));
 +
});
 +
}
 +
window.Carousel = Carousel;
 +
})(jQuery);
  
<p>This work may relate to or overlap with the work you document on your Human Practices page. Whereas Integrated Human Practices relates to the process of refining your project purpose and design, this page may highlight significant efforts that go beyond your particular project focus and/or address a significant broader concern in iGEM.
+
Carousel.init($(".Jcarousel"));
</p>
+
})
 +
</script>
 +
<div class="Jnav">
 +
<div class="Jnavtitle">
 +
<a href="https://2018.igem.org/Team:Jiangnan/Safety">Safety</a>
 +
</div>
 +
<div class="Jnavtitle">
 +
<a href="https://2018.igem.org/Team:Jiangnan/Hardware">Hardware</a>
 +
</div>
 +
<div class="Jnavtitle" onmouseover="Jnavshow(this)" onmouseleave="Jnavhide(this)">
 +
<a href="https://2018.igem.org/Team:Jiangnan/Team">Team</a>
 +
<div class="Jnavdrag">
 +
<ul>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Team">Team Members</a></li>
 +
<li class="divider"></li>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Attributions">Attribution</a></li>
 +
<li class="divider"></li>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Collaborations">Collaboration</a></li>
 +
</ul>
 +
</div>
 +
</div>
 +
<div class="Jnavtitle" onmouseover="Jnavshow(this)" onmouseleave="Jnavhide(this)">
 +
<a href="https://2018.igem.org/Team:Jiangnan/Human_Practices">Human Practice</a>
 +
<div class="Jnavdrag">
 +
<ul>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Human_Practices">Overview</a></li>
 +
<li class="divider"></li>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Silver">Silver</a></li>
 +
<li class="divider"></li>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Entrepreneurship">Gold</a></li>
 +
<li class="divider"></li>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Public_Engagement">Public Engagement</a></li>
 +
<li class="divider"></li>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Entrepreneurship">Entrepreneurship</a></li>
 +
</ul>
 +
</div>
 +
</div>
 +
<div class="Jnavtitle">
 +
<a href="https://2018.igem.org/Team:Jiangnan/Model">Model</a>
 +
</div>
 +
<div class="Jnavtitle" onmouseover="Jnavshow(this)" onmouseleave="Jnavhide(this)">
 +
<a href="https://2018.igem.org/Team:Jiangnan/Notebook">Notebook</a>
 +
<div class="Jnavdrag">
 +
<ul>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Notebook">Lab Book</a></li>
 +
<li class="divider"></li>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Protocol">Protocol</a></li>
 +
</ul>
 +
</div>
 +
</div>
 +
<div class="Jnavtitle" onmouseover="Jnavshow(this)" onmouseleave="Jnavhide(this)">
 +
<a href="https://2018.igem.org/Team:Jiangnan">Project</a>
 +
<div class="Jnavdrag">
 +
<ul>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Background">Background</a></li>
 +
<li class="divider"></li>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Design">Design</a></li>
 +
<li class="divider"></li>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Demonstrate">Demonstration</a></li>
 +
<li class="divider"></li>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Results">Result</a></li>
 +
<li class="divider"></li>
 +
<li><a href="https://2018.igem.org/Team:Jiangnan/Parts">Part</a></li>
 +
</ul>
 +
</div>
 +
</div>
 +
<div class="navlogo" style="float: left;width: 20%;text-align: center;">
 +
<a href="https://2018.igem.org/Team:Jiangnan"><img src="https://static.igem.org/mediawiki/2018/d/d7/T--Jiangnan--igemJN_logo.png" style="width: 3em;"></a>
 +
</div>
 +
</div>
  
  
<p>For more information, please see the <a href="https://2018.igem.org/Human_Practices">Human Practices Hub</a>. There you will find:</p>
 
 
<ul>
 
<li> an <a href="https://2018.igem.org/Human_Practices/Introduction">introduction</a> to Human Practices at iGEM </li>
 
<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>
 
<li>descriptions of <a href="https://2018.igem.org/Human_Practices/Examples">exemplary work</a> to inspire you</li>
 
<li>links to helpful <a href="https://2018.igem.org/Human_Practices/Resources">resources</a></li>
 
<li>And more! </li>
 
</ul>
 
 
 
<div class="clear extra_space"></div>
 
 
<p>If you nominate your team for the <a href="https://2018.igem.org/Judging/Awards"></a>Best Education and Public Engagement 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 review this page to consider your team for that prize. The criteria are listed below. </p>
 
  
<div class="highlight decoration_background">
+
<div>
<p>How have you developed new opportunities to include more people in shaping synthetic biology? Innovative educational tools and public engagement activities have the ability to establish a two-way dialogue with new communities by discussing public values and the science behind synthetic biology. Document your approach and what was learned by everyone involved to compete for this award.
+
<div style="position: relative;">
</p>
+
<img src="https://static.igem.org/mediawiki/2018/a/a0/T--Jiangnan--public_crousel.png" width="100%">
 +
<div style="position: absolute;bottom: 6em;right: 4em">
 +
<style type="text/css">
 +
.Jtitle{margin: 0.1em 0;font-weight: 300;font-size: 4em; text-align: right;color: #4fc3f7;}
 +
</style>
 +
<h2 class="Jtitle" style="color: white">Public<br>
 +
engagement<br>
 +
and<br>
 +
education</h2>
 +
</div>
 
</div>
 
</div>
 +
<div style="position: relative;margin-top: -2em;">
 +
<img src="https://static.igem.org/mediawiki/2018/2/2c/T--Jiangnan--public_top.png" width="100%">
 +
<div style="position: absolute;top: 4em;right: 4em;width: 25%;">
 +
<h4 style="text-align: right;color: #c05722">Overview</h4>
 +
<p style="text-align: right;color: #c05722">Jiangnan iGEM team has stepped out of the lab to disseminate knowledge on synthetic biology, vaccination and the concept of our project to the public.</p>
 +
</div>
 +
<div style="position: absolute;bottom: 1em;left: 4em;">
 +
<h4 style="color: #c05722">Interactions</h4>
 +
<h4 style="color: #c05722">with</h4>
 +
<h4 style="color: #c05722">kindergarten children</h4>
 +
<h5 style="color: #c05722">(June 4th and June 8th)</h5>
 +
</div>
 
</div>
 
</div>
 +
<div style="margin: 1em 4em;">
 +
<p style="color: #c05722"><b>According</b> to our preliminary market research, we found that the public didn’t pay sufficient attention to children’s education on vaccination. We are thus motivated to organize a compulsory teaching to kindergarten children on vaccine related knowledge.</p>
 +
<p style="color: #c05722">In June, we went to Xuelang Kindergarten and Swan Lake Kindergarten to let children understand the importance of vaccination, remind the teachers and parents of these children on the vaccination status of their kids so that these children could get vaccinated in time.</p>
 +
<div style="text-align: center;">
 +
<img src="https://static.igem.org/mediawiki/2018/8/86/T--Jiangnan--public_pic1.png" width="70%">
 +
</div>
 +
<p style="color: #c05722"><b>In order to</b> introduce basic concepts and roles of vaccination to small kids, we prepared a cute slide and some small gifts. We also brought some painting materials and guided these kids to draw some bio- and vaccine- related cartoons . In this way, we could know what biology looks like and how vaccination functions from children’ eyes. </p>
 +
<p style="color: #c05722"><b>One</b> of our team members, Bingyan Shen, has ample experiences in teaching small kids. Firstly, she showed them a cartoon of vaccine downloaded from the internet as the warm up to catch children’s attention. Then she asked them some simple questions on vaccine, and interacted with the children using gifts to stimulate their enthusiasm. Finally, she asked them to show what biology and vaccination looks like in their imagination through painting. Not only the children felt full of fun while learning, we also took it as a precious opportunity to learn something about vaccine and bio-world.</p>
 +
<div style="text-align: center;">
 +
<img src="https://static.igem.org/mediawiki/2018/c/cb/T--Jiangnan--public_pic2.png" width="70%">
 +
<p></p>
 +
<p style="width: 85%;color: #c05722;display: inline;">Besides direct interactions with the children, we also care whether parents are aware of the importance of vaccination. So we designed flyers and questionnaires on vaccination related information and asked parents to give feedbacks.</p>
 +
</div>
 +
</div>
 +
<div style="margin-top: 5em;">
 +
<h4 style="margin: 0.1em 2em 0.1em 0;text-align: right;color: #4fc3f7;">Lecture<br>
 +
in<br>
 +
senior high school<br>
 +
<h5 style="margin: 0.1em 2em 0.1em 0;text-align: right;color: #4fc3f7;">(July 7th)</h5>
 +
</div>
 +
<div style="margin: 1em 4em;">
 +
<p style="color: #c05722"><b>We</b> went to Wuxi No. 1 High School to introduce and stimulate students’ interests in synthetic biology. We also introduced our project to them to help them gain a deeper understanding on synthetic biology.</p>
 +
<p style="color: #c05722"><b>Our</b> lecture is consisted of four parts: vaccination, our project, synthetic biology and iGEM. In the vaccination part, we mainly talked about the mechanism and types of vaccines, as well as the importance of vaccination. Through this introduction, both the teachers and the students have deepened their understandings on the significance of vaccination. The second part of the lecture is about our project,which is also a topic on how a new vaccine can be developed using synthetic biology approaches. We found that this part is too specialized as some students who did not know anything about laboratory could not understand the topic well. To help them gain the basic idea of synthetic biology, we played an short video on this topic that was downloaded from Ted. This video attracted lots of attention and gave them a vivid explanation on synthetic biology. We talked about Biobricks to the audience, and most of them showed great curiosities. Finally, we introduced iGEM to them, with the hope that they may take an active part in this interesting competition some day in the future.</p>
 +
<div style="text-align: center;">
 +
<img src="https://static.igem.org/mediawiki/2018/7/75/T--Jiangnan--public_pic3.png" width="40%">
 +
<img src="https://static.igem.org/mediawiki/2018/d/de/T--Jiangnan--public_pic4.png" width="40%">
 +
<img src="https://static.igem.org/mediawiki/2018/1/1e/T--Jiangnan--public_pic5.png" width="40%">
 +
</div>
 +
<p style="color: #c05722"><b>After</b> the lecture, several students asked us some related questions, we were very happy to see that these young students were desired to learn more about synthetic biology. We believed that such communications should not stop at the classroom level, but should be brought steps further to the lab. We thus decided to organize an Openlab Day when we could take the students out to the lab and show them some cool stuff used in practical experiments.</p>
 +
</div>
 +
<div style="margin: 4em 4em;">
 +
<h4 style="color: #c05722">Open lab(July 14th)</h4>
 +
<p style="color: #c05722"><b>In</b> order to let high school students really feel the charm of biology, we held the activities called Plate Colony Painting. We invited some high school students to the public lab of our university to participate in this event. We prepared some plates and E. coli, and asked them to innovate in the plates. </p>
 +
<p style="color: #c05722"><b>These</b> students were given safety training by Yini Luo, one of our team members, before they were allowed to create imaginations with the plates and bacteria. These students indeed had full of fun, and we believed that they must had felt the charm of synthetic biology through participating in this event.</p>
 +
</div>
 +
<div style="margin: 4em 4em; padding-bottom: 4em;">
 +
<h4 style="color: #388e3c;text-align: right;">Sythetic biology<br>
 +
festival in Hangzhou</h4>
 +
<h5 style="color: #388e3c;text-align: right;">(August 19)</h5>
 +
<div class="Jcarousel">
 +
<ul>
 +
<li><img src="https://static.igem.org/mediawiki/2018/7/78/T--Jiangnan--public_pic6_1.png"></li>
 +
<li><img src="https://static.igem.org/mediawiki/2018/2/21/T--Jiangnan--public_pic6_2.png"></li>
 +
<li><img src="https://static.igem.org/mediawiki/2018/b/bb/T--Jiangnan--public_pic6_3.png"></li>
 +
</ul>
 +
</div>
 +
<p style="color: #c05722;text-align: right;"><b>On</b> August 19, our team and ZJU-China, ZJU-China, ASTWS-China, HFLS-ZheJiangUnited, WorldShaper-XSHS co-organized the Synthetic Biology Technology Festival at the Science and Technology Museum in Hangzhou, Zhejiang Province. In order to give children a preliminary understanding on biology and to stimulate children's interest, we organized many mini games such as ecological bottle besides giving lectures to help them learn things while having fun.</p>
 +
</div>
 +
</div>
 +
 +
</html>

Latest revision as of 03:08, 18 October 2018

Public
engagement
and
education

Overview

Jiangnan iGEM team has stepped out of the lab to disseminate knowledge on synthetic biology, vaccination and the concept of our project to the public.

Interactions

with

kindergarten children

(June 4th and June 8th)

According to our preliminary market research, we found that the public didn’t pay sufficient attention to children’s education on vaccination. We are thus motivated to organize a compulsory teaching to kindergarten children on vaccine related knowledge.

In June, we went to Xuelang Kindergarten and Swan Lake Kindergarten to let children understand the importance of vaccination, remind the teachers and parents of these children on the vaccination status of their kids so that these children could get vaccinated in time.

In order to introduce basic concepts and roles of vaccination to small kids, we prepared a cute slide and some small gifts. We also brought some painting materials and guided these kids to draw some bio- and vaccine- related cartoons . In this way, we could know what biology looks like and how vaccination functions from children’ eyes.

One of our team members, Bingyan Shen, has ample experiences in teaching small kids. Firstly, she showed them a cartoon of vaccine downloaded from the internet as the warm up to catch children’s attention. Then she asked them some simple questions on vaccine, and interacted with the children using gifts to stimulate their enthusiasm. Finally, she asked them to show what biology and vaccination looks like in their imagination through painting. Not only the children felt full of fun while learning, we also took it as a precious opportunity to learn something about vaccine and bio-world.

Besides direct interactions with the children, we also care whether parents are aware of the importance of vaccination. So we designed flyers and questionnaires on vaccination related information and asked parents to give feedbacks.

Lecture
in
senior high school

(July 7th)

We went to Wuxi No. 1 High School to introduce and stimulate students’ interests in synthetic biology. We also introduced our project to them to help them gain a deeper understanding on synthetic biology.

Our lecture is consisted of four parts: vaccination, our project, synthetic biology and iGEM. In the vaccination part, we mainly talked about the mechanism and types of vaccines, as well as the importance of vaccination. Through this introduction, both the teachers and the students have deepened their understandings on the significance of vaccination. The second part of the lecture is about our project,which is also a topic on how a new vaccine can be developed using synthetic biology approaches. We found that this part is too specialized as some students who did not know anything about laboratory could not understand the topic well. To help them gain the basic idea of synthetic biology, we played an short video on this topic that was downloaded from Ted. This video attracted lots of attention and gave them a vivid explanation on synthetic biology. We talked about Biobricks to the audience, and most of them showed great curiosities. Finally, we introduced iGEM to them, with the hope that they may take an active part in this interesting competition some day in the future.

After the lecture, several students asked us some related questions, we were very happy to see that these young students were desired to learn more about synthetic biology. We believed that such communications should not stop at the classroom level, but should be brought steps further to the lab. We thus decided to organize an Openlab Day when we could take the students out to the lab and show them some cool stuff used in practical experiments.

Open lab(July 14th)

In order to let high school students really feel the charm of biology, we held the activities called Plate Colony Painting. We invited some high school students to the public lab of our university to participate in this event. We prepared some plates and E. coli, and asked them to innovate in the plates.

These students were given safety training by Yini Luo, one of our team members, before they were allowed to create imaginations with the plates and bacteria. These students indeed had full of fun, and we believed that they must had felt the charm of synthetic biology through participating in this event.

Sythetic biology
festival in Hangzhou

(August 19)

On August 19, our team and ZJU-China, ZJU-China, ASTWS-China, HFLS-ZheJiangUnited, WorldShaper-XSHS co-organized the Synthetic Biology Technology Festival at the Science and Technology Museum in Hangzhou, Zhejiang Province. In order to give children a preliminary understanding on biology and to stimulate children's interest, we organized many mini games such as ecological bottle besides giving lectures to help them learn things while having fun.