Team:UCSF/kendall
From 2013.igem.org
(Difference between revisions)
(Created page with "<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"...") |
|||
Line 383: | Line 383: | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
Line 401: | Line 395: | ||
<div id="header_new"> | <div id="header_new"> | ||
<div id="header_title"> | <div id="header_title"> | ||
- | <a href="https:// | + | <a href="https://2013.igem.org/Team:UCSF"><img src="https://dl.dropbox.com/u/24404809/iGEM%202012/igem%202012%20website%20photos/group%20photo%20on%20steps.jpg" width="65%" alt="Autogene" style="border:none; -moz-box-shadow: 0px 0px 0px #fff; |
-webkit-box-shadow: 0px 0px 0px #Fff; | -webkit-box-shadow: 0px 0px 0px #Fff; | ||
box-shadow: 0px 0px 0px #fff; | box-shadow: 0px 0px 0px #fff; | ||
Line 407: | Line 401: | ||
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=0, Direction=135, Color='#ffffff')"; | -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=0, Direction=135, Color='#ffffff')"; | ||
/* For IE 5.5 - 7 */ | /* For IE 5.5 - 7 */ | ||
- | filter: progid:DXImageTransform.Microsoft.Shadow(Strength=0, Direction=135, Color='#ffffff');"></a><a href="https:// | + | filter: progid:DXImageTransform.Microsoft.Shadow(Strength=0, Direction=135, Color='#ffffff');"></a><a href="https://2013.igem.org/Main_Page"><img src="https://dl.dropbox.com/u/24404809/iGEM%202012/igem%202012%20website%20photos/extra/photo%20page/IMG_4513.JPG" width="25.9%" style="border:none; -moz-box-shadow: 0px 0px 0px #fff; |
-webkit-box-shadow: 0px 0px 0px #Fff; | -webkit-box-shadow: 0px 0px 0px #Fff; | ||
box-shadow: 0px 0px 0px #fff; | box-shadow: 0px 0px 0px #fff; | ||
Line 423: | Line 417: | ||
<li><a href="#">Team</a> | <li><a href="#">Team</a> | ||
<ul> | <ul> | ||
- | <li><a href="https:// | + | <li><a href="https://2013.igem.org/Team:UCSF/Team">Members</a></li> |
- | + | ||
- | + | ||
</ul> | </ul> | ||
</li> | </li> | ||
Line 456: | Line 450: | ||
</div> | </div> | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
Line 601: | Line 583: | ||
</script> | </script> | ||
+ | |||
+ | |||
+ | <script type="text/javascript"> | ||
+ | /** | ||
+ | * jQuery Opacity Rollover plugin | ||
+ | * | ||
+ | * Copyright (c) 2009 Trent Foley (http://trentacular.com) | ||
+ | * Licensed under the MIT License: | ||
+ | * http://www.opensource.org/licenses/mit-license.php | ||
+ | */ | ||
+ | ;(function($) { | ||
+ | var defaults = { | ||
+ | mouseOutOpacity: 0.67, | ||
+ | mouseOverOpacity: 1.0, | ||
+ | fadeSpeed: 'fast', | ||
+ | exemptionSelector: '.selected' | ||
+ | }; | ||
+ | |||
+ | $.fn.opacityrollover = function(settings) { | ||
+ | // Initialize the effect | ||
+ | $.extend(this, defaults, settings); | ||
+ | |||
+ | var config = this; | ||
+ | |||
+ | function fadeTo(element, opacity) { | ||
+ | var $target = $(element); | ||
+ | |||
+ | if (config.exemptionSelector) | ||
+ | $target = $target.not(config.exemptionSelector); | ||
+ | |||
+ | $target.fadeTo(config.fadeSpeed, opacity); | ||
+ | } | ||
+ | |||
+ | this.css('opacity', this.mouseOutOpacity) | ||
+ | .hover( | ||
+ | function () { | ||
+ | fadeTo(this, config.mouseOverOpacity); | ||
+ | }, | ||
+ | function () { | ||
+ | fadeTo(this, config.mouseOutOpacity); | ||
+ | }); | ||
+ | |||
+ | return this; | ||
+ | }; | ||
+ | })(jQuery); | ||
+ | |||
+ | </script> | ||
+ | |||
+ | |||
+ | <script type="text/javascript"> | ||
+ | $(function() { | ||
+ | |||
+ | var offset = $("#navigation_low").offset(); | ||
+ | var topPadding = 0; | ||
+ | |||
+ | $(window).scroll(function() { | ||
+ | |||
+ | if ($(window).scrollTop() > offset.top) { | ||
+ | |||
+ | $("#navigation_low").stop().animate({ | ||
+ | |||
+ | marginTop: $(window).scrollTop() - offset.top + topPadding | ||
+ | |||
+ | }); | ||
+ | |||
+ | } else { | ||
+ | |||
+ | $("#navigation_low").stop().animate({ | ||
+ | |||
+ | marginTop: 0 | ||
+ | |||
+ | }); | ||
+ | |||
+ | } | ||
+ | |||
+ | |||
+ | }); | ||
+ | |||
+ | }); | ||
+ | |||
+ | |||
+ | </script> | ||
+ | |||
+ | |||
+ | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> | ||
+ | <script type="text/javascript"> | ||
+ | //build menu with DIV ID="myslidemenu" on page: | ||
+ | droplinemenu.buildmenu("mydroplinemenu") | ||
+ | |||
+ | //Nivoslider | ||
+ | $(window).load(function() { | ||
+ | $('#slider').nivoSlider({ | ||
+ | effect:'fade', | ||
+ | pauseOnHover:true | ||
+ | }); | ||
+ | }); | ||
+ | |||
+ | //Profile script from http://www.willmaster.com/library/web-development/replace-div-content.php | ||
+ | function ReplaceContentInContainer(id,content) { | ||
+ | var container = document.getElementById(id); | ||
+ | container.innerHTML = content; | ||
+ | } | ||
+ | |||
+ | </script> | ||
+ | |||
+ | |||
+ | |||
+ | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> | ||
+ | <script src="https://2011.igem.org/Team:Johns_Hopkins/Templates/droplinemenu?action=raw&ctype=text/javascript" type="text/javascript"></script> | ||
+ | <script type="text/javascript" src="https://2011.igem.org/Team:Johns_Hopkins/Templates/nivosliderpack?action=raw&ctype=text/javascript"></script> | ||
+ | <script type="text/javascript" src="https://2011.igem.org/Team:Johns_Hopkins/Templates/hoverintent?action=raw&ctype=text/javascript"></script> | ||
+ | <script type="text/javascript" src="https://2011.igem.org/Team:Johns_Hopkins/Templates/galleriffic?action=raw&ctype=text/javascript"></script> | ||
+ | <script type="text/javascript" src="https://2011.igem.org/Team:Johns_Hopkins/Templates/js/opacityrollover?action=raw&ctype=text/javascript"></script> | ||
+ | <script type="text/javascript" src="https://2011.igem.org/Team:Johns_Hopkins/Templates/js/jqueryhistory?action=raw&ctype=text/javascript"></script> | ||
+ | <script type="text/javascript" src="https://2011.igem.org/Team:Johns_Hopkins/Templates/js/profile?action=raw&ctype=text/javascript"></script> | ||
+ | <script type="text/javascript" | ||
+ | src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> | ||
+ | </script> | ||
+ | <script type="text/javascript"> | ||
+ | //build menu with DIV ID="myslidemenu" on page: | ||
+ | droplinemenu.buildmenu("mydroplinemenu") | ||
+ | |||
+ | //Nivoslider | ||
+ | $(window).load(function() { | ||
+ | $('#slider').nivoSlider({ | ||
+ | effect:'fade', | ||
+ | pauseOnHover:true | ||
+ | }); | ||
+ | }); | ||
+ | |||
+ | //Profile script from http://www.willmaster.com/library/web-development/replace-div-content.php | ||
+ | function ReplaceContentInContainer(id,content) { | ||
+ | var container = document.getElementById(id); | ||
+ | container.innerHTML = content; | ||
+ | } | ||
+ | |||
+ | </script> | ||
+ | |||
+ | </p> | ||
+ | <!-- | ||
+ | NewPP limit report | ||
+ | Preprocessor node count: 14/1000000 | ||
+ | Post-expand include size: 82/2097152 bytes | ||
+ | Template argument size: 0/2097152 bytes | ||
+ | Expensive parser function count: 0/100 | ||
+ | --> | ||
+ | |||
+ | <!-- Saved in parser cache with key 2012_igem_org:pcache:idhash:264-0!1!0!!en!2 and timestamp 20130807183556 --> | ||
+ | <div class="printfooter"> | ||
+ | Retrieved from "<a href="https://2012.igem.org/Team:Johns_Hopkins-Software">https://2012.igem.org/Team:Johns_Hopkins-Software</a>"</div> | ||
+ | <div id="catlinks"><div id='catlinks' class='catlinks catlinks-allhidden'></div></div> <!-- end content --> | ||
+ | <div class="visualClear"></div> | ||
+ | </div> | ||
+ | </div> | ||
+ | <!-- PAGE FOOTER -- ITEMS FROM COLUMN ! HAVE BEEN MOVED HERE -- RDR --> | ||
+ | <div class="visualClear"></div> | ||
+ | <div id='footer-box' class='noprint'> | ||
+ | <div id="footer"> | ||
+ | <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/wiki/skins/common/images/poweredby_mediawiki_88x31.png" height="31" width="88" alt="Powered by MediaWiki" /></a></div> <div id="f-copyrightico"><a href="http://creativecommons.org/licenses/by/3.0/"><img src="http://i.creativecommons.org/l/by/3.0/88x31.png" alt="Attribution 3.0 Unported" width="88" height="31" /></a></div> <ul id="f-list"> | ||
+ | |||
+ | |||
+ | <!-- Recentchanges is not handles well DEBUG --> | ||
+ | <li id="t-recentchanges"><a href="/Special:RecentChanges" | ||
+ | title='Recent changes'>Recent changes</a></li> | ||
+ | |||
+ | <li id="t-whatlinkshere"><a href="/Special:WhatLinksHere/Team:Johns_Hopkins-Software" | ||
+ | title="List of all wiki pages that link here [j]" accesskey="j">What links here</a></li> | ||
+ | |||
+ | <li id="t-recentchangeslinked"><a href="/Special:RecentChangesLinked/Team:Johns_Hopkins-Software" | ||
+ | title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li> | ||
+ | |||
+ | |||
+ | |||
+ | <li id="t-upload"><a href="/Special:Upload" | ||
+ | title="Upload files [u]" accesskey="u">Upload file</a> | ||
+ | </li> | ||
+ | <li id="t-specialpages"><a href="/Special:SpecialPages" | ||
+ | title="List of all special pages [q]" accesskey="q">Special pages</a> | ||
+ | </li> | ||
+ | <li><a href='/Special:Preferences'>My preferences</a></li> | ||
+ | </ul> | ||
+ | </div> <!-- close footer --> | ||
+ | <div id='footer'> | ||
+ | <ul id="f-list"> | ||
+ | |||
+ | <li id="t-print"><a href="/wiki/index.php?title=Team:Johns_Hopkins-Software&printable=yes" | ||
+ | title="Printable version of this page [p]" accesskey="p">Printable version</a> | ||
+ | </li> | ||
+ | |||
+ | <li id="t-permalink"><a href="/wiki/index.php?title=Team:Johns_Hopkins-Software&oldid=296480" | ||
+ | title="Permanent link to this revision of the page">Permanent link</a> | ||
+ | </li> | ||
+ | |||
+ | |||
+ | <li id="privacy"><a href="/2012.igem.org:Privacy_policy" title="2012.igem.org:Privacy policy">Privacy policy</a></li> | ||
+ | <li id="disclaimer"><a href="/2012.igem.org:General_disclaimer" title="2012.igem.org:General disclaimer">Disclaimers</a></li> | ||
+ | </ul> | ||
+ | </div> <!-- close footer --> | ||
+ | </div> <!-- close footer-box --> | ||
+ | |||
+ | <script>if (window.runOnloadHook) runOnloadHook();</script> | ||
+ | </div> | ||
+ | <!-- Served in 0.212 secs. --></body> | ||
</html> | </html> |
Revision as of 18:56, 7 August 2013
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">