Team:Peking/LeftBar

From 2010.igem.org

(Difference between revisions)
 
(5 intermediate revisions not shown)
Line 33: Line 33:
<div id="lsidebar">
<div id="lsidebar">
-
<!--the start of the hover menu navigation-->
+
<hr size=4px width=172px color=00009f>
-
<!--DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"-->
+
<font size=3><font color=00009f><font face="Showcard Gothic">Overview</font></font></font>
-
<html xmlns="http://www.w3.org/1999/xhtml">
+
<html>
<head>
<head>
-
<title> color changing hover meau navigation</title>
 
-
<meta http-equiv="content-type" content="text/html;charset=gb2312">
 
-
<!--Add the following codes between <head> and </head>-->
 
<style type="text/css">
<style type="text/css">
-
*{margin:0;padding:0;color:#000000;}
+
<!--
-
body{font:12px 楷体_GB2312;}
+
ul#menu {
-
#nav{
+
  width: 172px;
-
margin:5px;
+
  list-style: none;
 +
  border-top: solid 1px #b9a894;
 +
  margin: 20px13px7px;
 +
  padding: 0;
 +
  position: relative;
 +
  float: left;
}
}
-
#nav li{
+
 
-
position:relative;
+
ul#menu ol {
-
list-style:none;
+
  display: none;
-
width:100px;/*change the width*/
+
  text-align: center;
 +
  list-style-type: none;
 +
  margin: 0px 0;
 +
  padding: 0;
}
}
-
#nav li a{
+
 
-
background:#ccc;
+
ul#menu li,
-
padding:5px;
+
  ul#menu a {
-
width:100px;
+
  font-family: "Comic Sans MS", Arial, Sans-serif;
-
border-top:1px solid #ccc;
+
  font-size: 13px;
-
text-decoration:none;
+
  color: #000000;
-
height:25px;
+
  margin: 0;
-
display:block;
+
-
text-align:center;line-height:25px;
+
}
}
-
#nav li a:hover{
+
 
-
background:#FFCC00;line-height:25px;height:25px;
+
ul#menu li {
 +
  border-bottom: solid 1px #b9a894;
 +
  line-height: 15px;
}
}
-
#nav ul ul{
+
 
-
position:absolute;
+
ul#menu ol li {
-
top:36px;
+
  border-bottom: none;
-
left:0px;
+
-
visibility:hidden;
+
}
}
-
#nav ul :hover ul{
+
 
-
visibility:visible;
+
ul#menu ol li:before {
 +
  content: "";
}
}
-
#nav ul ul li a{
+
 
-
display:block;
+
ul#menu a {
-
width:100px;
+
  display: block;
-
margin:0;
+
  width: 160px;
-
height:25px;
+
  height:  19px;
 +
  border: 1px solid #bbb;
 +
  margin-top: 0px;
 +
  background:  url(https://static.igem.org/mediawiki/2010/d/d0/Main.jpg) no-repeat left top;
 +
  padding: 2px 4px;
 +
  text-decoration: none;
 +
  color: #000
 +
  outline: none;
}
}
-
#nav table{
+
 
-
position:absolute;
+
ul#menu a:hover {
-
top:0;
+
    display: block;
-
left:0;
+
    width: 160px;
 +
    height: 19px;
 +
    border: 1px solid #bbb;
 +
    margin-top: 1px;
 +
    background: url(https://static.igem.org/mediawiki/2010/8/8e/ONHOVER.jpg) no-repeat left top;
 +
    padding: 2px 4px;
 +
    color: #0000ff;
}
}
-
hr{
+
 
-
display:none;
+
ul#menu a.active {
 +
    display: block;
 +
    margin: 0;
 +
    padding: 2px 4px;
 +
    width: 160px;
 +
    text-decoration: none;
 +
    font-weight: bold;
 +
    background: url(https://static.igem.org/mediawiki/2010/f/f0/Active.jpg) repeat-x bottom;
}
}
 +
-->
</style>
</style>
 +
 +
<script type="text/javascript">
 +
<!--
 +
/* This script and many more are available free online at
 +
The JavaScript Source :: http://javascript.internet.com
 +
Created by: Travis Beckham :: http://www.squidfingers.com | http://www.podlob.com */
 +
 +
/* Coded by Travis Beckham
 +
  http://www.squidfingers.com | http://www.podlob.com
 +
  version date: 06/02/03
 +
  If want to use this code, feel free to do so, but please leave this message intact. */
 +
 +
// Node Functions
 +
 +
if(!window.Node){
 +
  var Node = {ELEMENT_NODE : 1, TEXT_NODE : 3};
 +
}
 +
 +
function checkNode(node, filter){
 +
  return (filter == null || node.nodeType == Node[filter] || node.nodeName.toUpperCase() == filter.toUpperCase());
 +
}
 +
 +
function getChildren(node, filter){
 +
  var result = new Array();
 +
  var children = node.childNodes;
 +
  for(var i = 0; i < children.length; i++){
 +
    if(checkNode(children[i], filter)) result[result.length] = children[i];
 +
  }
 +
  return result;
 +
}
 +
 +
function getChildrenByElement(node){
 +
  return getChildren(node, "ELEMENT_NODE");
 +
}
 +
 +
function getFirstChild(node, filter){
 +
  var child;
 +
  var children = node.childNodes;
 +
  for(var i = 0; i < children.length; i++){
 +
    child = children[i];
 +
    if(checkNode(child, filter)) return child;
 +
  }
 +
  return null;
 +
}
 +
 +
function getFirstChildByText(node){
 +
  return getFirstChild(node, "TEXT_NODE");
 +
}
 +
 +
function getNextSibling(node, filter){
 +
  for(var sibling = node.nextSibling; sibling != null; sibling = sibling.nextSibling){
 +
    if(checkNode(sibling, filter)) return sibling;
 +
  }
 +
  return null;
 +
}
 +
function getNextSiblingByElement(node){
 +
        return getNextSibling(node, "ELEMENT_NODE");
 +
}
 +
 +
// Menu Functions & Properties
 +
 +
var activeMenu;
 +
var lastClicked;
 +
 +
function showMenu() {
 +
  if(activeMenu){
 +
    activeMenu.className = "";
 +
    getNextSiblingByElement(activeMenu).style.display = "none";
 +
  }
 +
  if(this == activeMenu)
 +
  {
 +
    activeMenu = null;
 +
    lastClicked = null;
 +
  } else {
 +
    this.className = "active";
 +
    getNextSiblingByElement(this).style.display = "block";
 +
    activeMenu = this;
 +
    lastClicked = this.textContent;
 +
    window.name = lastClicked;
 +
  }
 +
 +
return false;
 +
 
 +
 +
}
 +
 +
function initMenu(){
 +
  var menus, menu, text, a, i;
 +
  menus = getChildrenByElement(document.getElementById("menu"));
 +
 
 +
  for(i = 0; i < menus.length; i++){
 +
    menu = menus[i];
 +
    text = getFirstChildByText(menu);
 +
    a = document.createElement("a");
 +
    menu.replaceChild(a, text);
 +
    a.appendChild(text);
 +
    a.href = "#";
 +
    a.onclick = showMenu;
 +
    a.onfocus = function(){this.blur()};
 +
    if (a.textContent == window.name)
 +
    {
 +
      a.className = "active";
 +
      getNextSiblingByElement(a).style.display = "block";
 +
      activeMenu = a;
 +
    }
 +
 +
  }
 +
 
 +
 
 +
}
 +
 +
if(document.createElement) window.onload = initMenu;
 +
//-->
 +
</script>
 +
 +
</head>
</head>
<body>
<body>
-
<!--Add the following codes between <body> and </body>-->
 
-
<div id="Project Overview">
 
-
<hr size=4px width=172px color=00009f>
+
<table align=left cellspacing=0 cellpadding=0>
-
<font size=3><font color=00009f><b><i>Project Overview</i></b></font></font>
+
<tr><td>
-
<br>
+
<ul id="menu">
 +
<li>Temp
 +
    <ol>
 +
      <lie><a href="https://2010.igem.org/Team:Peking/Team">Team</a>
 +
      <li><a href="https://2010.igem.org/Team:Peking/Project">Project</a></li>
 +
      <li><a href="https://2010.igem.org/Team:Peking/Parts">Parts</a></li>
 +
     
 +
      <li><a href="https://2010.igem.org/Team:Peking/Modeling">Modeling</a></li>
 +
      <li><a href="https://2010.igem.org/Team:Peking/Notebook">Notebook</a></li>
 +
      <li><a href="https://2010.igem.org/Team:Peking/Human_Practice">Human Practice</a></li>
 +
    </ol>
 +
  </li>
 +
 
 +
</ul>
 +
</td></tr></table>
 +
<br><br><br><br><br><br><br><br><br><br><br><br><br><br>
-
<div id="nav">
 
-
  <ul>
 
-
    <li>
 
-
    <a href="#">Overview
 
-
  <!--[if IE 7]><!--></a><!--<![endif]-->
 
-
  <!--[if lte IE 6]><table cellspacing="0"><tr><td><![endif]-->
 
-
  <ul>
 
-
            <li><a href="#">Team</a></li>
 
-
            <li><a href="#">Project</a></li>
 
-
            <li><a href="#">Modelling</a></li>
 
-
            <li><a href="#">blabla</a></li>     
 
-
  </ul>
 
-
  <!--[if lte IE 6]></td></tr></table></a><![endif]-->
 
-
  </li>
 
-
  </ul>
 
-
  <hr>
 
-
</div>
 
-
</div>
 
</body>
</body>
 +
</html>
</html>
-
 
-
<!-- the end of the HMN-->
 
-
 
<hr size=4px width=172px color=00009f>
<hr size=4px width=172px color=00009f>
-
<font size=3><font color=00009f><b><i>CountDown</i></b></font></font>
+
<font size=3><font color=00009f><font face="Showcard Gothic">CountDown</font></font></font>
<!--the countdown code-->
<!--the countdown code-->
Line 130: Line 264:
<html>
<html>
<div id="countdown">
<div id="countdown">
-
<object type="application/x-shockwave-flash" data="http://www.oneplusyou.com/bb/files/countdown/countdown.swf?co=ffffff&bgcolor=22537e&date_month=11&date_day=4&date_year=0&un=IGEM JAMBOREE 2010&size=small&mo=11&da=4&yr=2010" width="172" height="58">
+
<object type="application/x-shockwave-flash" data="http://www.oneplusyou.com/bb/files/countdown/countdown.swf?co=00009f&bgcolor=ffffff&date_month=11&date_day=4&date_year=0&un=IGEM JAMBOREE 2010&size=small&mo=11&da=4&yr=2010" width="172" height="58">
-
<param name="movie" value="http://www.oneplusyou.com/bb/files/countdown/countdown.swf?co=ffffff&bgcolor=22537e&date_month=11&date_day=4&date_year=0&un=IGEM JAMBOREE 2010&size=small&mo=11&da=4&yr=2010" /><param name="bgcolor" value="#22537e" /></object>
+
<param name="movie" value="http://www.oneplusyou.com/bb/files/countdown/countdown.swf?co=00009f&bgcolor=ffffff&date_month=11&date_day=4&date_year=0&un=IGEM JAMBOREE 2010&size=small&mo=11&da=4&yr=2010" /><param name="bgcolor" value="ffffff" /></object>
</div>
</div>
</html>
</html>
Line 139: Line 273:
<br>
<br>
<hr size=4px width=172px color=00009f>
<hr size=4px width=172px color=00009f>
-
<font size=3><font color=00009f><b><i>Vistors From...</i></b></font></font>
+
<font size=3><font color=00009f><font face="Showcard Gothic">Vistors From...</font></font></font>
Line 145: Line 279:
<a href="http://www3.clustrmaps.com/counter/maps.php?url=https://2010.igem.org/Team:Peking" id="clustrMapsLink"><img src="http://www3.clustrmaps.com/counter/index2.php?url=https://2010.igem.org/Team:Peking" width="172px" style="border:0px;" alt="Locations of visitors to this page" title="Locations of visitors to this page" id="clustrMapsImg" onerror="this.onerror=null; this.src='http://www2.clustrmaps.com/images/clustrmaps-back-soon.jpg'; document.getElementById('clustrMapsLink').href='http://www2.clustrmaps.com';" />
<a href="http://www3.clustrmaps.com/counter/maps.php?url=https://2010.igem.org/Team:Peking" id="clustrMapsLink"><img src="http://www3.clustrmaps.com/counter/index2.php?url=https://2010.igem.org/Team:Peking" width="172px" style="border:0px;" alt="Locations of visitors to this page" title="Locations of visitors to this page" id="clustrMapsImg" onerror="this.onerror=null; this.src='http://www2.clustrmaps.com/images/clustrmaps-back-soon.jpg'; document.getElementById('clustrMapsLink').href='http://www2.clustrmaps.com';" />
</a>
</a>
 +
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</html>
</html>
</div>
</div>

Latest revision as of 09:12, 19 August 2010