Team:Penn/Notebook2

From 2012.igem.org

(Difference between revisions)
Line 20: Line 20:
<body>
<body>
 +
<div style="overflow:hidden;">
 +
<div style="margin-bottom:0px; padding-bottom:0px;">
 +
<a href="https://2012.igem.org/Team:Penn" style="padding:0px; margin:0px;">
 +
<img src="https://static.igem.org/mediawiki/2012/e/e5/Bluelogo.jpg" /></a>
 +
</div>
 +
 +
<ul class="nav">
 +
<li class="dropdown">
 +
 +
    <a href="#">Drug Delivery</a>
 +
 +
<ul>
 +
        <li><a href='/Team:Penn/DrugDeliveryOverview'>Overview</a></li>
 +
<li><a href='/Team:Penn/DrugDeliverySystem'>System</a></li>
 +
<li><a href='/Team:Penn/DrugDeliveryResults'>Results</a></li>
 +
<li><a href='/Team:Penn/DrugDeliveryParts'>Parts</a></li>
 +
</ul>
 +
</li>
 +
 +
<li class="dropdown">
 +
 +
    <a href="#">Biofilms</a>
 +
 +
<ul>
 +
              <li><a href='/Team:Penn/BiofilmsOverview'>Overview</a></li>
 +
<li><a href='/Team:Penn/BioflmsSystem'>System</a></li>
 +
<li><a href='/Team:Penn/BiofilmsResults'>Results</a></li>
 +
<li><a href='/Team:Penn/BiofilmsParts'>Parts</a></li>
 +
</ul>
 +
</li>
 +
 +
<li class="dropdown">
 +
 +
<a href="#">Lab Work</a>
 +
 +
<ul>
 +
 +
                                <li><a href='/Team:Penn/Notebook'>Notebook</a></li>
 +
<li><a href='/Team:Penn/Safety'>Safety</a></li>
 +
<li><a href='/Team:Penn/Protocols'>Protocols</a></li>
 +
 +
</ul>
 +
 +
        </li>
 +
 +
<li class="dropdown">
 +
 +
<a href="#">Human Practices</a>
 +
 +
<ul>
 +
 +
<li><a href='/Team:Penn/Education'>Education</a></li>
 +
<li><a href='/Team:Penn/Regulations'>Regulations</a></li>
 +
<li><a href='/Team:Penn/Registry'>The Registry</a></li>
 +
</ul>
 +
 +
</li>
 +
 +
<li class="dropdown">
 +
 +
<a href="#">About Us</a>
 +
 +
<ul>
 +
 +
<li><a href='/Team:Penn/Team'>Team</a></li>
 +
<li><a href='/Team:Penn/Advisors'>Advisors</a></li>
 +
<li><a href='/Team:Penn/Sponsors'>Sponsors</a></li>
 +
</ul>
 +
</li>
 +
 +
<div class="arrow"></div>
 +
 +
</ul>
 +
 +
<!----------------------------------------------------------------------------->
<div id="accordion-container">
<div id="accordion-container">
<h2 class="accordion-header">What is it?</h2>
<h2 class="accordion-header">What is it?</h2>

Revision as of 09:58, 15 September 2012

Penn 2012 iGEM Wiki

What is it?

Vallenato is a super simple jQuery based accordion script. There are plenty of other great accordion scripts out there to choose from, so why use Vallenato? Well, it's easy to implement, looks good, is flexible, and of course...it's free. This page is an example of Vallenato in action!

Download

Download the Vallenato script here:

Vallenato

Installation

First, unzip the "vallenato.zip" file and place the "vallenato" folder in the same directory as the html file(s) that will be using the script. If placed in a different folder, you will need to update the paths below.

In the <head> section of your html you will need to link to jQuery, the Vallenato script and stylesheet. You can use the following code:

<script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>

<script src="vallenato/vallenato.js" type="text/javascript"></script>

<link rel="stylesheet" href="vallenato/vallenato.css" type="text/css" media="screen">

Mark Up

Mark up is simple and straight forward, just use the following code as a template:

<div id="accordion-container">
     <h2 class="accordion-header">Section 1</h2>
     <div class="accordion-content">
          <p>Section 1 Content</p>
     </div>
     <h2 class="accordion-header">Section 2</h2>
     <div class="accordion-content">
          <p>Section 2 Content</p>
     </div>
</div>