Difference between revisions of "Team:NYMU-Taipei"

 
(71 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
<html>
 
<html>
  
<head>
+
<script>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
+
 
 +
// This is the jquery part of your template. 
 +
// Try not modify any of this code too much since it makes your menu work.
 +
 
 +
$(document).ready(function() {
 +
 
 +
$("#HQ_page").attr('id','');
 +
 
 +
// call the functions that control the menu
 +
menu_functionality();
 +
hide_show_menu();
 +
 
 +
 
 +
 
 +
//this function controls the expand and collapse buttons of the menu and changes the +/- symbols
 +
function menu_functionality() {
 +
 
 +
//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">
 
<link href="https://fonts.googleapis.com/css?family=Economica" rel="stylesheet">
 
 
<style type="text/css" rel="stylesheet">
+
<style>
 
 
 
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
 
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
Line 34: Line 119:
 
 
 
/* home content */
 
/* home content */
 +
.head_wrapper {
 +
background-color:#29382a;
 +
}
 +
 
.home_wrapper {
 
.home_wrapper {
 
background-color:rgba(35, 51, 31, 0.9);
 
background-color:rgba(35, 51, 31, 0.9);
height:500px;
+
height:40vw;
 +
}
 +
 +
.introduction_wrapper {
 +
background-color:#181f28;
 
}
 
}
 
 
 
/* home space */
 
/* home space */
 
.home_space {
 
.home_space {
height:300px;
+
height:25vw;
 
opacity:1;
 
opacity:1;
 
}
 
}
 
 
/* home content link style */
+
/* image */
.home a {
+
.home_wrapper img:hover {
 
+
box-shadow:0 0 0.8vw 0.5vw rgba(256,256,256, 0.5);
}
+
 
+
.home a:hover {  
+
position:relative;top:5px;left:5px;
+
 
}
 
}
 
 
 
/* Wrapper for the footer */
 
/* Wrapper for the footer */
.igem_2017_footer_wrapper {
+
.footer_wrapper {
 
background-image: url('https://static.igem.org/mediawiki/2017/0/0f/T--NYMU-Taipei--footer.png');
 
background-image: url('https://static.igem.org/mediawiki/2017/0/0f/T--NYMU-Taipei--footer.png');
 
background-color:#f6ffb2;
 
background-color:#f6ffb2;
Line 69: Line 158:
 
/* footer layout */
 
/* footer layout */
 
.footer_half_size {
 
.footer_half_size {
float: left;
+
float: right;
 
width: 40%;
 
width: 40%;
 
height: 135px;
 
height: 135px;
Line 75: Line 164:
 
padding:0% 2%;
 
padding:0% 2%;
 
background-color:rgba(255, 255, 255, 0.2);
 
background-color:rgba(255, 255, 255, 0.2);
 
 
}
 
}
 
 
Line 84: Line 172:
 
font-size: 20px;
 
font-size: 20px;
 
text-shadow: 2px 2px 2px #aaa;
 
text-shadow: 2px 2px 2px #aaa;
font-family:'Economica', sans-serif;
 
 
}
 
}
 
 
 
.footer_text {  
 
.footer_text {  
 
font-size: 18px;
 
font-size: 18px;
color: #4f4844;
+
color: #4f4844;
font-family:'Economica', sans-serif;
+
 
}
 
}
 
 
 
/* footer link style */
 
/* footer link style */
.igem_2017_footer_wrapper a {  
+
.footer_wrapper a {  
 
color:  #38a541;
 
color:  #38a541;
font-family:'Economica', sans-serif;
 
 
 
}
 
}
  
.igem_2017_footer_wrapper a:hover {  
+
.footer_wrapper a:hover {  
 
color:  #38a541;
 
color:  #38a541;
 
text-decoration:underline;
 
text-decoration:underline;
font-family:'Economica', sans-serif;
+
}
}
+
 +
/* IF THE SCREEN IS LESS THAN 1200PX */
 +
@media only screen and (max-width: 1200px) {
 +
video {width:100%}
 +
}
 
</style>
 
</style>
</head>
 
  
 +
</head>
 
 
 
   
 
   
Line 113: Line 201:
 
<div class='home'>
 
<div class='home'>
 
<!-- head vedeo -->
 
<!-- head vedeo -->
<div class = 'head_wrapper '>
+
<div class = 'head_wrapper' style="height:100%;">
<video width = "100%" autoplay loop>
+
<center>
<source src="https://static.igem.org/mediawiki/2017/2/22/T--NYMU-Taipei--homepagevedio.mp4" type="video/mp4">
+
<video loop autoplay controls
 +
width = "80%" >
 +
 +
<source src='https://static.igem.org/mediawiki/2017/c/cd/T--NYMU-Taipei--home.mp4'>
 +
 +
</video>
 +
</center>
 
</div>
 
</div>
 
 
Line 122: Line 216:
 
 
 
<!-- first content:懶人包圖說 -->
 
<!-- first content:懶人包圖說 -->
<div class='home_wrapper'>
+
<div class='introduction_wrapper'>
NYMU-Taipei
+
<img src='https://static.igem.org/mediawiki/2017/d/d3/T--NYMU-Taipei--home_introduction.png'
 +
style='width:90vw'>
 
</div>
 
</div>
  
Line 132: Line 227:
 
<div class='home_wrapper'>
 
<div class='home_wrapper'>
 
 
<div style="width:100%;height:65px;background:rgba(35, 51, 31, 0);float:left"></div>
+
<div style="width:100vw;height:6vw;background:rgba(35, 51, 31, 0);float:left"></div>
 
 
<div style="width:4%;height:250px;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/Description">
+
<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"
 
<img src="https://static.igem.org/mediawiki/2017/3/3a/T--NYMU-Taipei--home1.jpg"
style="width:27%;border-radius:50%;border:5px solid #5d8755;float:left;">
+
style="width:27vw;border-radius:50%;float:left;">
 
</a>
 
</a>
 
 
 
 
<div style="width:4%;height:250px;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/Description">
+
<a href="https://2017.igem.org/Team:NYMU-Taipei/Parts">
<img src="https://static.igem.org/mediawiki/2017/3/3a/T--NYMU-Taipei--home1.jpg"
+
<img src="https://static.igem.org/mediawiki/2017/8/87/T--NYMU-Taipei--home2.png"
style="width:27%;border-radius:50%;border:5px solid #5d8755;float:left;">
+
style="width:27vw;border-radius:50%;float:left;"> <!--border:0.5vw solid #7c4949;-->
 
</a>
 
</a>
 
 
<div style="width:4%;height:250px;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/Description">
+
<a href="https://2017.igem.org/Team:NYMU-Taipei/HP/Gold_Integrated">
<img src="https://static.igem.org/mediawiki/2017/3/3a/T--NYMU-Taipei--home1.jpg"
+
<img src="https://static.igem.org/mediawiki/2017/c/c2/T--NYMU-Taipei--homehp.png"
style="width:27%;border-radius:50%;border:5px solid #5d8755;float:left;">
+
style="width:27vw;border-radius:50%;float:left;">
 
</a>
 
</a>
 
 
Line 164: Line 259:
 
<!--footer-->
 
<!--footer-->
  
<div class = "igem_2017_footer_wrapper" >
+
<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">
+
<div class = 'footer_half_size'>
<p class = "footer_title">AFFILIATIONS & ACKNOWLEDGMENT</p>
+
<p class = 'footer_title'>AFFILIATIONS & ACKNOWLEDGMENT</p>
 
 
<p class = "footer_text">
+
<p class = 'footer_text'>
 
 
 
<a href="https://2017.igem.org/Main_Page" target="_blank">IGEM 2017</a></br>
 
<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="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>
 
</p>
 
</div>
 
</div>
+
<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>
 
</div>
  

Latest revision as of 16:48, 26 October 2017