A Pen by Phil Knowles on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="accordion-wrapper"> | |
| <div class="accordion"> | |
| <div class="tab"> | |
| <label id="1">Login Form</label> | |
| <label id="2">Calculator</label> | |
| <label id="3">Shopping Cart</label> | |
| <label id="4">Tab</label> | |
| <label id="5">Accordion</label> | |
| <label id="6">Image Carousel</label> | |
| </div> |
This is a an accordion built with HTML, Sass & Compass. CSS3 is used for transition effects. Code was originally pulled from here
A Pen by Nick Dominguez on CodePen.
A Pen by Scott Marshall on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="reveal" class="wrapper"> | |
| <div class="content">REVEAL</div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- JJ --> | |
| <div id="contentBoxApp" ng-app="contentBoxApp"> | |
| <div id="GridCtrl" ng-controller="GridCtrl"> | |
| <div class="toolbar"> | |
| <div class="container"> | |
| <div class="toolbar-section"> | |
| <span class="logo toolbar-item"><i class="fa fa-picture-o"></i>ContentGrid</span> | |
| </div><!-- /.toolbar-section --> | |
| <div class="toolbar-section"> | |
| <div class="toolbar-item form-field"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- multistep form --> | |
| <form id="msform"> | |
| <!-- progressbar --> | |
| <ul id="progressbar"> | |
| <li class="active">Account Setup</li> | |
| <li>Social Profiles</li> | |
| <li>Personal Details</li> | |
| </ul> | |
| <!-- fieldsets --> | |
| <fieldset> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="wrap"> | |
| <section class="question-section"> | |
| <h1>Pure CSS Content Accordion</h1> | |
| <p>A pure CSS solution to a classically JS driven UI element.</p> | |
| <div class="cat-1"> | |
| <input id="tab-1" type="radio" name="tabs" tabindex="1"> | |
| <label for="tab-1" >Technical</label><!-- end of tab label --> | |
| <div class="question-wrap"> | |
| <div class="question"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <nav role="select"> | |
| <ul> | |
| <li><a href="#">Stream</a></li> | |
| <li><a href="#">Lab</a></li> | |
| <li><a href="#">Projects</a></li> | |
| <li><a href="#">About</a></li> | |
| <li><a href="#">Contact</a></li> | |
| </ul> | |
| <select onchange="if (this.value) window.location.href = this.value;"> |