Team:Nevada
From 2014.igem.org
(Prototype team page) |
|||
Line 1: | Line 1: | ||
- | + | <!DOCTYPE html> | |
- | + | ||
<html> | <html> | ||
+ | <head> | ||
+ | <meta charset="utf-8" /> | ||
+ | <title>Thin HTML5 Coming Soon Template</title> | ||
+ | <link rel="stylesheet" href="https://2014.igem.org/Team:Nevada/flexi-background.css.UniversityofNevada?action=raw&ctype=text/css" type="text/css" media="screen" /> | ||
+ | <link rel="stylesheet" href="https://2014.igem.org/Team:Nevada/ml-coming-soon.css.UniversityofNevada?action=raw&ctype=text/css" type="text/css" media="screen" /> | ||
+ | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | ||
+ | <script type="text/javascript"> | ||
+ | // MediaLoot jQuery Countdown Timer | ||
+ | // Description: Allows you to choose which unit of time from which to countdown and allows you to style each unit of time separately. | ||
+ | // Author: Natalie Hipp | MediaLoot.com | ||
+ | // URL: http://medialoot.com/item/ | ||
+ | |||
+ | $(document).ready(function() { | ||
+ | |||
+ | function mlCountdown() { | ||
+ | // Step 1: Make sure to call jQuery in your <head> | ||
+ | // Step 2: Fill in the following two variables | ||
+ | var eventTime = '1414627201'; // Unix Event Time - Get your stamp from http://www.unixtimestamp.com/index.php | ||
+ | |||
+ | var startFrom = 'D'; // Adjust from which time unit you'd like to countdown: Use D for days, H for hours, M for minutes, or S for seconds. | ||
+ | |||
+ | // Step 3: Add some spans in your HTML | ||
+ | /* Each Unit of time is displayed independently so that you can style them differently. | ||
+ | |||
+ | Create <span>'s for each unit of time. Each span must have the class "ml-countdown" and then add the appropriate following classes for what you'd like to display: "days", "hours", "minutes", & "seconds". | ||
+ | |||
+ | For example, to display the number of days remaining, add this: <span class="ml-countdown days"></span> | ||
+ | */ | ||
+ | |||
+ | // We'll take it from here | ||
+ | var currentTime = Math.round(new Date().getTime() / 1000); // Grabs current time in seconds | ||
+ | var timeLeft = eventTime - currentTime; | ||
+ | |||
+ | // Calculate numbers based on what kind of time they want to count from | ||
+ | if (startFrom == 'S') { | ||
+ | var scLeft = Math.floor(timeLeft); | ||
+ | |||
+ | $(".ml-countdown.seconds").html(scLeft); | ||
+ | } | ||
+ | else if (startFrom == 'M') { | ||
+ | var minLeft = Math.floor(timeLeft / 60); | ||
+ | var scLeft1 = timeLeft - (minLeft * 60); // number of whole minutes | ||
+ | var scLeft = Math.floor(scLeft1); | ||
+ | |||
+ | $(".ml-countdown.minutes").html(minLeft); | ||
+ | $(".ml-countdown.seconds").html(scLeft); | ||
+ | } | ||
+ | else if (startFrom == 'H') { | ||
+ | var hrLeft = Math.floor(timeLeft / 60 / 60); | ||
+ | var minLeft1 = hrLeft * 60 * 60; // number of whole hours | ||
+ | var minLeft2 = timeLeft - minLeft1; | ||
+ | var minLeft = Math.floor(minLeft2 / 60); | ||
+ | var scLeft1 = minLeft * 60; //number of whole minutes | ||
+ | var scLeft2 = timeLeft - minLeft1 - scLeft1; | ||
+ | var scLeft = Math.floor(scLeft2); | ||
+ | |||
+ | $(".ml-countdown.hours").html(hrLeft); | ||
+ | $(".ml-countdown.minutes").html(minLeft); | ||
+ | $(".ml-countdown.seconds").html(scLeft); | ||
+ | } | ||
+ | // Otherwise, default as if counting from days | ||
+ | else { | ||
+ | var dayLeft = Math.floor(timeLeft / 60 / 60 / 24); | ||
+ | var hrLeft1 = dayLeft * 24 * 60 * 60; // days left in seconds | ||
+ | var hrLeft2 = timeLeft - hrLeft1; | ||
+ | var hrLeft = Math.floor(hrLeft2 / 60 / 60); | ||
+ | var minLeft1 = hrLeft * 60 * 60; // hours left in seconds | ||
+ | var minLeft2 = timeLeft - hrLeft1 - minLeft1; | ||
+ | var minLeft = Math.floor(minLeft2 / 60); | ||
+ | var scLeft1 = minLeft * 60; // minutes left in seconds | ||
+ | var scLeft2 = timeLeft - hrLeft1 - minLeft1 - scLeft1; | ||
+ | var scLeft = Math.floor(scLeft2); | ||
+ | |||
+ | |||
+ | $(".ml-countdown.days").html(dayLeft); | ||
+ | $(".ml-countdown.hours").html(hrLeft); | ||
+ | $(".ml-countdown.minutes").html(minLeft); | ||
+ | $(".ml-countdown.seconds").html(scLeft); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | window.onload=mlCountdown; | ||
+ | window.setInterval( mlCountdown, 1000); | ||
+ | |||
+ | }); | ||
+ | </script> | ||
+ | </head> | ||
+ | <body> | ||
+ | <script src="https://2014.igem.org/Team:Nevada/flexi-background.js.UniversityofNevada?action=raw&ctype=text/javascript" type="text/javascript" charset="utf-8"></script> | ||
+ | <header> | ||
+ | <div class="wrapper"> | ||
+ | <ul class="countdown"> | ||
+ | <li><span class="ml-countdown days"></span>Days</li> | ||
+ | <li><span class="ml-countdown hours"></span>Hours</li> | ||
+ | <li><span class="ml-countdown minutes"></span>Mins</li> | ||
+ | <li><span class="ml-countdown seconds"></span>Secs</li> | ||
+ | </ul> | ||
+ | </div> | ||
+ | </header> | ||
+ | <div class="body_wrapper"> | ||
+ | <div class="connect"> | ||
+ | <p> | ||
+ | <img src="https://static.igem.org/mediawiki/2014/7/7e/Unr_igem_2014_nav_bar_image.png" width="300" height="200"> | ||
+ | </p> | ||
+ | </div> | ||
+ | <div class="wrapper"> | ||
+ | <h2>Team Nevada - Coming Soon</h2> | ||
+ | <p>Since its <strong>inception in 2003 </strong> at MIT, the iGEM competition has grown to an international level bringing bringing <strong>thousands of international students </strong>together | ||
+ | is dedicated to education and competition, to the advancement of synthetic biology,and the development of open community and collaboration.</p> | ||
- | < | + | <h2><strong>Team Nevada's goal:</strong> </h2> |
- | < | + | <p> To regulate transcription and translation using the rapid response hormone auxin. Other Eukaryotes lack the auxin response but <strong> share the SCF degradation pathway </strong>, allowing us to transplant the auxin-inducibly degron <strong>(AID) system </strong>into nonplant cells and use a small moleucle to conditionally control portein stability.</p> |
- | + | <div class="connect"> | |
- | + | <p> | |
- | + | <a class="awesome" href="https://supportnevada.unr.edu/sslpage.aspx?pid=355">Click Here to Become a Sponsor</a> | |
- | + | </p> | |
- | + | <h2><strong>Our Sponsors:</strong> </h2> | |
- | < | + | <p><img src="https://static.igem.org/mediawiki/2014/8/88/Nv_inbre_logo.jpg" width="375" height="95"><img src="https://static.igem.org/mediawiki/2014/f/ff/Unr_biotechnology.jpg" width="497" height="110"></p> |
- | <p> | + | <div id="mc_embed_signup"> |
- | < | + | <form action="//unr.us8.list-manage.com/subscribe/post?u=1e17b269b9856183e91cf0eb4&id=7fa80921ac" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | < | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | < | + | |
- | < | + | |
- | + | ||
- | + | ||
- | <a | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | < | + | |
- | + | ||
- | + | ||
- | < | + | |
- | < | + | |
- | + | ||
- | + | ||
- | < | + | |
- | + | ||
- | < | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | < | + | |
- | + | ||
- | < | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | < | + | <input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="Subscribe to Our Newsletter" required> |
+ | <div style="position: absolute; left: -5000px;"><input type="text" name="b_1e17b269b9856183e91cf0eb4_7fa80921ac" tabindex="-1" value=""></div> | ||
+ | <div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div> | ||
+ | </form> | ||
+ | </div> | ||
+ | <ul> | ||
+ | |||
+ | <li class="twitter"><a href="http://www.twitter.com/iGEM_UNR">Twitter</a></li> | ||
- | <ul> | + | </ul> |
- | + | </div> | |
- | + | </div> | |
- | < | + | <p> For any questions, comments, or concerns contact Veronica Zapida at veronica.zepeda@gmail.com |
- | + | </p> | |
- | + | </div> | |
- | + | </body> | |
- | + | </html> | |
- | + | ||
- | </ | + | |
- | </ | + | |
- | </ | + | |
- | </ | + |
Revision as of 22:36, 17 July 2014
<!DOCTYPE html>
- Days
- Hours
- Mins
- Secs
Team Nevada - Coming Soon
Since its inception in 2003 at MIT, the iGEM competition has grown to an international level bringing bringing thousands of international students together is dedicated to education and competition, to the advancement of synthetic biology,and the development of open community and collaboration.
Team Nevada's goal:
To regulate transcription and translation using the rapid response hormone auxin. Other Eukaryotes lack the auxin response but share the SCF degradation pathway , allowing us to transplant the auxin-inducibly degron (AID) system into nonplant cells and use a small moleucle to conditionally control portein stability.
For any questions, comments, or concerns contact Veronica Zapida at veronica.zepeda@gmail.com