Difference between revisions of "Team:NYMU-Taipei"

 
(186 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{NYMU-Taipei}}
 
{{NYMU-Taipei-css}}
 
 
 
<html>
 
<html>
  
<head>
+
<script>
</head>
+
+
<body class = 'background_color'>
+
+
<!-- start of content -->
+
  
   
+
// This is the jquery part of your template.  
  <h2>NYMU-Taipei</h2>
+
// Try not modify any of this code too much since it makes your menu work.
  
  <h1>Microalgae Biofuel Assistant</h1>
+
$(document).ready(function() {
  
  <p>Ever since humans realized that oil depletion was inevitable, scientists began conducting research on alternative resources - biofuels. However, scientists met several problems along the way. During the process of transforming other food crops like corn and soybeans into biofuel, there were many disadvantages such as having low calorific value, low production, and lacking suitable lands for planting. However, after a plethora of experiments, a new raw material of biofuel was produced: microalgae.
+
$("#HQ_page").attr('id','');
  </p>
+
  
  <p>
+
// call the functions that control the menu
  Microalgae, which first appeared in the scientific world in the 1980s, have once again reemerged in the 21st century. The lipids that was produced by microalgae can now be used as raw materials of biofuel. In comparison to other oil-producing crops, microalgae have much more advantages. For instance, microalgae can be grown in almost any environment, multiply quickly and doesn’t cause environmental pollution.
+
menu_functionality();
  </p>
+
hide_show_menu();
  
  <p>
 
  The reason why microalgae are not widely used so far is because the cost of using microalgae to produce biofuel is rather higher than the cost of petroleum. Currently, there are two types of ecosystem to produce biofuel by using algae: open system and closed system. In an open system, the efficiency of producing biofuel is extremely low but it costs less. On the other hand, in closed system, the efficiency of producing biofuel is extremely high but it costs a lot. Therefore, our team decided to reduce the cost of algae by increasing the productivity of the open system. By using microalgae, the strategies of producing biomass energy can be listed into three steps:  breeding the microalgae, harvesting the production, and processing the oil.
 
  </p>
 
  
  <p>
 
  To accomplish our goal, we decide to extract the idea of symbiotic bacteria. By co-culturing a modified microbe, which had been experimentally proven that it can live with the oil-producing algae – Chlorella – successfully, we can increase the amount of oil production. We hope our modified bacteria will ultimately be analogous with plants like Bacillus species.
 
  </p>
 
  
  <p>
+
//this function controls the expand and collapse buttons of the menu and changes the +/- symbols
  Improving the oil productivity can effectively reduce the production cost. Most importantly, the biomass energy of microalgae will then be one step closer to success. We believe that facing the threats of energy crisis, the breakthrough of our project will ultimately make great contributions to the future developments of biofuel.
+
function menu_functionality() {
  </p>
+
  
 +
//when clicking on a "menu_button", it will change the "+/-" accordingly and it will show/hide the corresponding submenu
 +
$(".menu_button").click(function(){
 +
 +
// add or remove the class "open" , this class holds the "-"
 +
$(this).children().toggleClass("open");
 +
// show or hide the submenu
 +
$(this).next('.submenu_wrapper').fadeToggle(400);
 +
});
 +
 +
// when the screen size is smaller than 800px, the display_menu_control button appears and will show/hide the whole menu
 +
$("#display_menu_control").click(function(){
 +
$('#menu_content').fadeToggle(400);
 +
});
 +
 +
// call the current page highlight function
 +
highlight_current_page();
 +
}
 +
 +
 +
// call the highlight current page function to show it on the menu with a different background color
 +
function highlight_current_page() {
 +
 +
// select a page from the menu based on the id assigned to it and the current page name and add the class "current page" to make it change background color
 +
$("#"+  wgPageName.substring(wgPageName.lastIndexOf("/")+1, wgPageName.length ) + "_page").addClass("current_page");
 +
 +
// now that the current_page class has been added to a menu item, make the submenu fade in
 +
$(".current_page").parents(".submenu_wrapper").fadeIn(400);
 +
// change the +/- symbol of the corresponding menu button
 +
$(".current_page").parents(".submenu_wrapper").prev().children().toggleClass("open");
 +
 +
}
 +
 +
 +
 +
// allow button on the black menu bar to show/hide the side menu
 +
function hide_show_menu() {
 +
 +
// in case you preview mode is selected, the menu is hidden for better visibility
 +
if (window.location.href.indexOf("submit") >= 0) {
 +
$(".igem_2017_menu_wrapper").hide();
 +
}
 +
 +
// if the black menu bar has been loaded
 +
  if (document.getElementById('bars_item')) {
 +
 +
// when the "bars_item" has been clicked
 +
$("#bars_item").click(function() {
 +
$("#sideMenu").hide();
 +
 +
// show/hide the menu wrapper
 +
$(".igem_2017_menu_wrapper").fadeToggle("100");
 +
});
 +
  }
 +
 +
// because the black menu bars loads at a different time than the rest of the page, this function is set on a time out so it can run again in case it has not been loaded yet
 +
else {
 +
    setTimeout(hide_show_menu, 15);
 +
}
 +
}
 +
 +
 +
});
 +
 +
 +
</script>
 +
 +
<head>
 +
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
 +
 +
<link href="https://fonts.googleapis.com/css?family=Economica" rel="stylesheet">
 +
 +
<style>
 +
 +
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
 +
 +
/* Clear the default wiki settings */
 +
 +
#home_logo, #sideMenu { display:none; }
 +
#sideMenu, #top_title, .patrollink  {display:none;}
 +
#content { width:100%; padding:0px;  margin-top:-7px; margin-left:0px;}
 +
body {background-color:white; }
 +
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
 +
 +
/**********************************************************************************************************************************/
 +
 +
body{
 +
background-color:#f6ffb2;
 +
}
 +
 +
/* home background */
 +
.home{
 +
background-image: url('https://static.igem.org/mediawiki/2017/0/0c/T--NYMU-Taipei--homebackground.jpg');
 +
background-attachment: fixed;
 +
background-repeat: no-repeat;
 +
background-position: center;
 +
background-size: cover;
 +
background-color:#f6ffb2;
 +
}
 +
 +
/* home content */
 +
.head_wrapper {
 +
background-color:#29382a;
 +
}
 +
 +
.home_wrapper {
 +
background-color:rgba(35, 51, 31, 0.9);
 +
height:40vw;
 +
}
 +
 +
.introduction_wrapper {
 +
background-color:#181f28;
 +
}
 +
 +
/* home space */
 +
.home_space {
 +
height:25vw;
 +
opacity:1;
 +
}
 +
 +
/* image */
 +
.home_wrapper img:hover {
 +
box-shadow:0 0 0.8vw 0.5vw rgba(256,256,256, 0.5);
 +
}
 +
 +
/* Wrapper for the footer */
 +
.footer_wrapper {
 +
background-image: url('https://static.igem.org/mediawiki/2017/0/0f/T--NYMU-Taipei--footer.png');
 +
background-color:#f6ffb2;
 +
background-repeat: no-repeat;
 +
background-position: center;
 +
background-size: cover;
 +
padding: 2%;
 +
display:block;
 +
height:150px;
 +
font-family:'Economica', sans-serif;
 +
}
 +
 +
/* footer layout */
 +
.footer_half_size {
 +
float: right;
 +
width: 40%;
 +
height: 135px;
 +
margin:0.8% 3%;
 +
padding:0% 2%;
 +
background-color:rgba(255, 255, 255, 0.2);
 +
}
 +
 +
 +
/* footer text style */
 +
.footer_title {
 +
color: #3d1905;
 +
font-size: 20px;
 +
text-shadow: 2px 2px 2px #aaa;
 +
}
 +
 +
.footer_text {
 +
font-size: 18px;
 +
color: #4f4844;
 +
}
 +
 +
/* footer link style */
 +
.footer_wrapper a {
 +
color:  #38a541;
 +
}
 +
 +
.footer_wrapper a:hover {
 +
color:  #38a541;
 +
text-decoration:underline;
 +
}
 +
 +
/* IF THE SCREEN IS LESS THAN 1200PX */
 +
@media only screen and (max-width: 1200px) {
 +
video {width:100%}
 +
}
 +
</style>
 +
 +
</head>
 +
 
   
 
   
 +
<body>
 +
<div class='home'>
 +
<!-- head vedeo -->
 +
<div class = 'head_wrapper' style="height:100%;">
 +
<center>
 +
<video loop autoplay controls
 +
width = "80%" >
 +
 +
<source src='https://static.igem.org/mediawiki/2017/c/cd/T--NYMU-Taipei--home.mp4'>
 +
 +
</video>
 +
</center>
 +
</div>
 +
 +
<!-- first space -->
 +
<div class='home_space'></div>
 +
 +
<!-- first content:懶人包圖說 -->
 +
<div class='introduction_wrapper'>
 +
<img src='https://static.igem.org/mediawiki/2017/d/d3/T--NYMU-Taipei--home_introduction.png'
 +
style='width:90vw'>
 +
</div>
  
 +
<!-- second space -->
 +
<div class='home_space'></div>
 +
 +
<!--second content:連結 -->
 +
<div class='home_wrapper'>
 +
 +
<div style="width:100vw;height:6vw;background:rgba(35, 51, 31, 0);float:left"></div>
 +
 +
<div style="width:4vw;height:34vw;background:rgba(35, 51, 31, 0);float:left"></div>
 +
 +
<a href="https://2017.igem.org/Team:NYMU-Taipei/Overview">
 +
<img src="https://static.igem.org/mediawiki/2017/3/3a/T--NYMU-Taipei--home1.jpg"
 +
style="width:27vw;border-radius:50%;float:left;">
 +
</a>
 +
 +
 +
<div style="width:4vw;height:34vw;background:rgba(35, 51, 31, 0);;float:left"></div>
 +
 +
<a href="https://2017.igem.org/Team:NYMU-Taipei/Parts">
 +
<img src="https://static.igem.org/mediawiki/2017/8/87/T--NYMU-Taipei--home2.png"
 +
style="width:27vw;border-radius:50%;float:left;"> <!--border:0.5vw solid #7c4949;-->
 +
</a>
 +
 +
<div style="width:4vw;height:34vw;background:rgba(35, 51, 31, 0);float:left;"></div>
 +
 +
<a href="https://2017.igem.org/Team:NYMU-Taipei/HP/Gold_Integrated">
 +
<img src="https://static.igem.org/mediawiki/2017/c/c2/T--NYMU-Taipei--homehp.png"
 +
style="width:27vw;border-radius:50%;float:left;">
 +
</a>
 +
 +
</div>
 +
 +
 +
 +
</div>
 +
 +
<!--footer-->
 +
 +
<div class = "footer_wrapper ">
 +
 +
<div class = 'footer_half_size'>
 +
<p class = 'footer_title'>CONTACT US</p>
 +
 +
<p class = 'footer_text'>Email us: 2017igem.nymutaipei@gmail.com</br>
 +
Call us: 886-2-28267316</br>
 +
Facebook: <a href="https://www.facebook.com/NYMU-iGEM-Team-244897845537138/?fref=ts" target="_blank">NYMU iGEM Team</a>
 +
</p>
 +
 +
 +
</div>
 +
 +
<div class = 'footer_half_size'>
 +
<p class = 'footer_title'>AFFILIATIONS & ACKNOWLEDGMENT</p>
 +
 +
<p class = 'footer_text'>
 +
 +
<a href="https://2017.igem.org/Main_Page" target="_blank">IGEM 2017</a></br>
 +
<a href="http://nymu-e.web.ym.edu.tw/bin/home.php" target="_blank">National Yang-Ming University</a></br>
 +
<a href="https://2017.igem.org/Team:NYMU-Taipei/Attributions" >Special Thanks</a>
 +
 +
</p>
 +
</div>
 +
 +
</div>
 +
 +
 +
 
   
 
   
</body>
+
</body>
 
   
 
   
  
 
</html>
 
</html>

Latest revision as of 16:48, 26 October 2017