Team:ETH Zurich/collapsible
From 2013.igem.org
(Difference between revisions)
Line 1: | Line 1: | ||
- | <html | + | <html> |
- | < | + | <script type="text/javascript"> |
- | + | (function($) { | |
- | + | $.fn.extend({ | |
- | + | collapsiblePanel: function() { | |
- | + | // Call the ConfigureCollapsiblePanel function for the selected element | |
- | + | return $(this).each(ConfigureCollapsiblePanel); | |
- | + | } | |
- | + | }); | |
- | + | ||
- | $( " | + | })(jQuery); |
- | + | ||
- | + | function ConfigureCollapsiblePanel() { | |
- | + | $(this).addClass("ui-widget"); | |
- | + | ||
- | + | // Wrap the contents of the container within a new div. | |
- | + | $(this).children().wrapAll("<div class='collapsibleContainerContent ui-widget-content'></div>"); | |
- | + | ||
- | + | // Create a new div as the first item within the container. Put the title of the panel in here. | |
- | + | $("<div class='collapsibleContainerTitle ui-widget-header'><div>" + $(this).attr("title") + "</div></div>").prependTo($(this)); | |
- | + | ||
- | + | // Assign a call to CollapsibleContainerTitleOnClick for the click event of the new title div. | |
- | + | $(".collapsibleContainerTitle", this).click(CollapsibleContainerTitleOnClick); | |
- | + | } | |
- | + | ||
- | + | function CollapsibleContainerTitleOnClick() { | |
- | + | // The item clicked is the title div... get this parent (the overall container) and toggle the content within it. | |
- | + | $(".collapsibleContainerContent", $(this).parent()).slideToggle(); | |
- | + | } | |
- | + | $(document).ready(function() { | |
- | + | $(".collapsibleContainer").collapsiblePanel(); | |
- | + | }); | |
- | + | </script> | |
- | + | <style type="text/css"> | |
- | + | .collapsibleContainer | |
- | + | { | |
- | + | border: solid 1px #9BB5C1; | |
- | + | ||
- | + | } | |
- | + | ||
- | + | .collapsibleContainerTitle | |
- | + | { | |
- | + | cursor:pointer; | |
- | + | } | |
- | + | ||
- | + | .collapsibleContainerTitle div | |
- | + | { | |
- | + | padding-top:5px; | |
- | + | padding-left:10px; | |
- | + | background-color:#9BB5C1; | |
- | + | color:#607882; | |
- | <p> | + | } |
- | + | ||
- | + | .collapsibleContainerContent | |
- | + | { | |
- | + | padding: 10px; | |
- | + | } | |
- | + | </style> | |
- | + | ||
- | + | <div class="collapsibleContainer" title="Example Collapsible Panel"> | |
- | + | <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.... (you get the idea!) </p> | |
- | + | ||
- | + | ||
</div> | </div> | ||
- | + | ||
- | + | ||
- | + | ||
</html> | </html> |
Revision as of 15:08, 23 October 2013
Lorem ipsum dolor sit amet, consectetur adipiscing elit.... (you get the idea!)