Line 1,011: | Line 1,011: | ||
<script> | <script> | ||
/* Hiding stupid stuff*/ | /* Hiding stupid stuff*/ | ||
− | $(document).ready(function() { | + | $(document).ready(function () { |
$('#top_title').css('display', 'none'); | $('#top_title').css('display', 'none'); | ||
$('#top_menu').css('display', 'none'); | $('#top_menu').css('display', 'none'); | ||
− | |||
$('#HQ_page').css('display', 'none'); | $('#HQ_page').css('display', 'none'); | ||
$('#top_menu_under').css('display', 'none'); | $('#top_menu_under').css('display', 'none'); | ||
Line 1,020: | Line 1,019: | ||
$('#HQ_page').attr("id", "iGEM"); //voids all dumb CSS iGEM HQ wrote which overrides our code | $('#HQ_page').attr("id", "iGEM"); //voids all dumb CSS iGEM HQ wrote which overrides our code | ||
$('#mw-content-text').attr("id", "overruled").removeClass('mw-content-ltr'); | $('#mw-content-text').attr("id", "overruled").removeClass('mw-content-ltr'); | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
// Animation over top nav bar when mouse hovers | // Animation over top nav bar when mouse hovers | ||
$('nav').mouseover( | $('nav').mouseover( | ||
− | function() { | + | function () { |
− | $('#img-logo').css('transition', '.35s ease-in') | + | $('#img-logo').css('transition', '.35s ease-in') |
− | + | .css('opacity', '1'); | |
− | $('#img-igemlogo').css('transition', '.35s ease-in') | + | $('#img-igemlogo').css('transition', '.35s ease-in') |
− | + | .css('opacity', '1'); | |
$('nav ul').addClass("hover"); | $('nav ul').addClass("hover"); | ||
} | } | ||
), | ), | ||
$('nav').mouseout( | $('nav').mouseout( | ||
− | function() { | + | function () { |
var scroll = $(window).scrollTop(); | var scroll = $(window).scrollTop(); | ||
if (scroll > 0) { | if (scroll > 0) { | ||
− | if ($(window).width() >= | + | if ($(window).width() >= 1090) { |
var pushed = $('body').hasClass('pushed'); | var pushed = $('body').hasClass('pushed'); | ||
if (pushed == false) { | if (pushed == false) { | ||
− | $('#img-logo').css('transition', '.25s ease') | + | $('#img-logo').css('transition', '.25s ease') |
− | + | .css('opacity', '0'); | |
− | $('#img-igemlogo').css('transition', '.25s ease') | + | $('#img-igemlogo').css('transition', '.25s ease') |
− | + | .css('opacity', '0'); | |
$('nav ul').removeClass("hover"); | $('nav ul').removeClass("hover"); | ||
$('nav').css('transition', '.5s ease'); | $('nav').css('transition', '.5s ease'); | ||
Line 1,072: | Line 1,050: | ||
), | ), | ||
// Window width effect on top nav bar | // Window width effect on top nav bar | ||
− | $(document).ready(function() { | + | $(document).ready(function () { |
function checkWidth() { | function checkWidth() { | ||
− | + | if ($(window).width() < 1090 || $('nav').hasClass('pushed')) { | |
− | + | $('nav li').css('display', 'none'); | |
− | + | $('#img-more').css('display', 'block'); | |
− | + | $('nav ul').addClass("hover"); | |
− | + | $('#img-logo').css('transition', '.35s ease-in') | |
− | + | .css('opacity', '1'); | |
− | + | $('#img-igemlogo').css('transition', '.35s ease-in') | |
− | + | .css('opacity', '1'); | |
− | + | } | |
− | + | else { | |
− | + | $('nav li').css('display', 'inline'); | |
− | + | $('#img-more').css('display', 'none'); | |
− | + | $('nav ul').removeClass("hover"); | |
− | + | if ($(window).scrollTop() > 0) { | |
− | + | $('#img-igemlogo').css('transition', '.25s ease') | |
− | + | .css('opacity', '0'); | |
− | + | $('#img-logo').css('transition', '.25s ease') | |
− | + | .css('opacity', '0'); | |
+ | $('nav ul').addClass("scrolled"); | ||
+ | } | ||
} | } | ||
} | } | ||
− | + | // Execute on load | |
− | + | ||
checkWidth(); | checkWidth(); | ||
// Bind event listener | // Bind event listener | ||
Line 1,101: | Line 1,080: | ||
}); | }); | ||
// Resized nav bar effect when more icon is clicked | // Resized nav bar effect when more icon is clicked | ||
− | $('#img-more').click(function() { | + | $('#img-more').click(function () { |
$('#img-more').toggleClass('pushed'); | $('#img-more').toggleClass('pushed'); | ||
$('#div-navResized').toggleClass('pushed'); | $('#div-navResized').toggleClass('pushed'); | ||
$('nav').toggleClass('pushed'); | $('nav').toggleClass('pushed'); | ||
$('nav img').toggleClass('pushed'); | $('nav img').toggleClass('pushed'); | ||
− | if ($(window).width() >= | + | if ($(window).width() >= 1090) { |
var pushed = $('body').hasClass('pushed'); | var pushed = $('body').hasClass('pushed'); | ||
if (pushed == false) { | if (pushed == false) { | ||
Line 1,112: | Line 1,091: | ||
$('#img-more').css('display', 'none'); | $('#img-more').css('display', 'none'); | ||
$('nav ul').removeClass("hover"); | $('nav ul').removeClass("hover"); | ||
− | |||
− | |||
− | |||
− | |||
} | } | ||
} | } | ||
Line 1,121: | Line 1,096: | ||
// Scrolling animation for top nav bar | // Scrolling animation for top nav bar | ||
var nav = $('nav ul'); | var nav = $('nav ul'); | ||
− | $(window).scroll(function() { | + | $(window).scroll(function () { |
var scroll = $(window).scrollTop(); | var scroll = $(window).scrollTop(); | ||
if (scroll > 0) { | if (scroll > 0) { | ||
− | if ($(window).width() >= | + | if ($(window).width() >= 1090) { |
nav.addClass("scrolled"); | nav.addClass("scrolled"); | ||
nav.removeClass("hover"); | nav.removeClass("hover"); | ||
− | $('#img-logo').css('transition', '.25s ease') | + | $('#img-logo').css('transition', '.25s ease') |
− | + | .css('opacity', '0'); | |
− | $('#img-igemlogo').css('transition', '.25s ease') | + | $('#img-igemlogo').css('transition', '.25s ease') |
− | + | .css('opacity', '0'); | |
} | } | ||
− | } else { | + | } |
+ | else { | ||
nav.removeClass("scrolled"); | nav.removeClass("scrolled"); | ||
− | $('#img-logo').css('transition', '.35s ease-in') | + | $('#img-logo').css('transition', '.35s ease-in') |
− | + | .css('opacity', '1'); | |
− | $('#img-igemlogo').css('transition', '.35s ease-in') | + | $('#img-igemlogo').css('transition', '.35s ease-in') |
− | + | .css('opacity', '1'); | |
} | } | ||
}); | }); |
Revision as of 01:15, 11 October 2016
</div> </div>
UMaryland iGEM founded the first Mid-Atlantic Meet-up and hosted four other teams: UVA, William and Mary, Duke, and Rock Ridge High School. Each team gave a 25 minute presentation of their project followed by a Q&A with the audience. We were also fortunate enough to have Special Agent Edward You of the FBI and UMD Professor Raymond St. Leger as guest speakers.
This year we included more iGEM teams in the Mid Atlantic Area hosting the University of Pittsburgh, the US Naval Academy, the College of Willam and Mary, and University of Virginia iGEM Teams. We shared ideas and received feedback about ours projects during our discussion session. We were joined by guest speakers Dr. Eli Groban and Dr. Ganesh Sriram with opening remarks by Dr. Edward Eisenstein and closing remarks by Anna Sifuentes.
Thank you to everyone who participated!
Speakers
Dr. Ganesh Sriram
Dr. Ganesh Sriram is a professor in the Department of Chemical and Biomolecular Engineering and an Affiliate Faculty Member in the Bioengineering and Plant Biology graduate programs at UMD. He has earned his B.S. and M.S degrees in Chemical Engineering from the Indian Institute of Technology in Bombay, and received his Ph.D. in chemical engineering from Iowa State University. His current research pertains to metabolic engineering and systems biology, especially of eukaryotes.1
1. Bio from http://www.ench.umd.edu/faculty/sriramDr. Eli Groban
Dr. Eli Groban is the senior manager of of Bio/Nano Research at Autodesk, and has 6 patent applications on the development of new technologies for engineering proteins, metabolic pathways, and whole microbes. Eli will also be serving as an iGEM judge in the 2016 competition. He received his PhD in Biophysics from the University of California, San Francisco, and his B.A. in Chemistry from Williams College.2
2. Bio from https://www.autodeskresearch.com/people/eli-groban