Team:Wash U/Temp

From 2009.igem.org

Revision as of 18:45, 17 June 2009 by Brendan1 (Talk | contribs)
  • >> Lips
    • <a href="cat.html">Cat</a>
    • <a href="rabbit.html">Rabbit</a>
    • <a href="dingo.html">Dingo</a>
  • >> Ears
    • Elephant >>
      • <a href="indian.html">Indian</a>
      • <a href="african.html">African</a>
    • <a href="monkey.html">Monkey</a>
    • <a href="dog.html">Dog</a>
  • >> Eyes
    • <a href="pig.html">Pig</a>
    • <a href="bird.html">Bird</a>
    • <a href="worm.html">Worm</a>



    <style type="text/css"> ul.makeMenu, ul.makeMenu ul {

     width: 80px;                 /* sets the size of the menu blocks */
     border: 1px solid #000;      /* puts a black border around the menu blocks */
     background-color: #8aa;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
     padding-left: 0px;           /* stops the usual indent from ul */
     cursor: default;             /* gives an arrow cursor */
     margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
    

    } ul.makeMenu li {

     list-style-type: none;       /* removes the bullet points */
     margin: 0px;                 /* Opera 7 puts large spacings between li elements */
     position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                     the lack of offset makes these appear normal, but it will make a difference
                                     to the absolutely positioned child blocks */
     color: #fff;                 /* sets the default font colour to white */
    

    } ul.makeMenu li > ul { /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */

     display: none;               /* hides child menu blocks - one of the most important declarations */
     position: absolute;          /* make child blocks hover without leaving space for them */
     top: 2px;                    /* position slightly lower than the parent menu item */
     left: 80px;                  /* this must not be more than the width of the parent block, or the mouse will
                                     have to move off the element to move between blocks, and the menu will close */
    

    } ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {

     background-color: #ffa;      /* gives the active menu items a yellow background */
     color: #000;                 /* makes the active menu item text black */ 
    

    } ul.makeMenu ul.CSStoShow { /* must not be combined with the next rule or IE gets confused */

     display: block;              /* specially to go with the className changes in the behaviour file */
    

    } ul.makeMenu li:hover > ul { /* one of the most important declarations - the browser must detect hovering over arbitrary elements

                                     the > targets only the child ul, not any child uls of that child ul */
     display: block;              /* makes the child block visible - one of the most important declarations */
    

    } /* and some link styles */ ul.makeMenu li a { color: #fff; display: block; width: 100%; text-decoration: underline; } ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000; } ul.makeMenu li:hover > a { color: #000; } /* supports links in branch headings - should not be display: block; */ </style>

  • <a href="accessibleLink.html">>> Noses</a>
    • <a href="bat.html">Bat</a>
    • <a href="fish.html">Fish</a>
    • <a href="panther.html">Panther</a>


<attach event="onmouseover" handler="rollOver" /> <attach event="onmouseout" handler="rollOff" /> <script type="text/javascript"> function rollOver() {

 //change the colour
 element.className += (element.className?' ':) + 'CSStoHighlight';
 //change display of child
 for( var x = 0; element.childNodes[x]; x++ ){
   if( element.childNodes[x].tagName == 'UL' ) { element.childNodes[x].className += (element.childNodes[x].className?' ':) + 'CSStoShow'; }
   if( element.childNodes[x].tagName == 'A' ) { element.childNodes[x].className += (element.childNodes[x].className?' ':) + 'CSStoHighLink'; }
 }

}

function rollOff() {

 //change the colour
 element.className = element.className.replace(/ ?CSStoHighlight$/,);
 //change display of child
 for( var x = 0; element.childNodes[x]; x++ ){
   if( element.childNodes[x].tagName == 'UL' ) { element.childNodes[x].className = element.childNodes[x].className.replace(/ ?CSStoShow$/,); }
   if( element.childNodes[x].tagName == 'A' ) { element.childNodes[x].className = element.childNodes[x].className.replace(/ ?CSStoHighLink$/,); }
 }

} </script>