Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <body>
			
			
			 <div class="container-view"> 
			 
			 
					<span id="view-1" class="button-circ c-1"> <i> </i> </span>
			        
					
					
					
					<div class="main-view"> 
							
							<ul class="list-tabs">   
								<li>  <h2> Work </h2> 
									  <h3> Oct 9, 2014  </h3> 

								</li>
								<li>  <h2> Photos </h2> 
									  <h3> Oct 13, 2014 </h3> 
								
								</li>
								<li>  	<h2> Tasks</h2> 
										<h3>Oct 18, 2014 </h3> 


								</li>
								<li> 	 <h2>Notes</h2>
										<h3> Oct 23, 2014 </h3> 

								</li>

							</ul> 
					
					 </div>
			 
			 
			 </div>
			
			
			
			
			
    </body>
              
            
!

CSS

              
                @import "compass/css3";



$c1: #FF5252; 
$c2: #2196F3;

$b1: #eee;  
$b2: #fff;  

$easeOutQuint: cubic-bezier(0.230, 1.000, 0.320, 1.000); 




html {
height: 100%; 

}

body {
background: $b1;
height: 100%; 
font-family: "RobotoDraft", sans-serif;
font-weight: 400; 
overflow: hidden; 
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.container-view {
position: relative; 
background: $b2; 
height: 500px; 
width: 600px; 
margin: 0 auto; 
margin-top: -250px; 
top: 50%; 

}


.button-circ {
background: $c2; 
color: #fff; 

text-align: center; 
font-size: 1.500em; 
line-height: 60px; 
cursor: pointer;

z-index: 500; 
position: absolute; 
width: 60px; 
height: 60px; 
border-radius: 50%; 

left: 50%;
top: 50%;
transform: translate(-50%, -50%);

transition: all 500ms $easeOutQuint; 

}

.button-circ i:before {
content: '+'; 
display: inline-block; 
color: #fff; 
z-index: 500; 
}
.container-view.view_1 span.button-circ i:before {
transform: rotate(45deg);
transition: all 400ms $easeOutQuint;  
transition-delay: 0.6s;
}

.main-view {

background: $c1;
z-index: 200; 
position: absolute; 

width: 3px; 
height: 3px; 
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
transition: all 400ms $easeOutQuint;   

}


.container-view.view_1 .main-view{
width: 100%; 
height: 100%; 
transition: all 800ms $easeOutQuint;

}

.container-view.view_1 #view-1 {
left: 100%;
top: 10%;
transform: translate(-136%, -50%) ;
transition: all 700ms cubic-bezier(0.660, -0.200, 0.425, 0.945); /* custom */

}




ul.list-tabs {
visibility: hidden;
background: #fff; 
z-index: 300; 

}
ul.list-tabs li{
visibility: hidden;
display: block; 
 font-size: 1.063em; 
line-height: 1; 
 
/*transform*/

        transform:translate3D(0,160px,0);

}



.container-view  ul.list-tabs  {

height: 0%;

}
.container-view.view_1 ul.list-tabs  {
height: 75%; 
visibility: visible;

transition: all 1000ms $easeOutQuint;  /* easeOutQuint */


-webkit-transition-delay: 0.1s; /* Safari */
    transition-delay: 0.1s;
}


.container-view.view_1 ul.list-tabs li  {
visibility: visible;

padding: 1.4em;
position: relative; 
width: 100%; 
background: $b2; 
min-height: 80px; 
/*transform*/

transform:translate3D(0px,0,0);

  transition: all 500ms $easeOutQuint; /* easeOutQuint */

-webkit-transition-delay: 0.5s; /* Safari */
    transition-delay: 0.5s;

}



.container-view  ul.list-tabs li:before  {
content: '';
display: block; 
position: absolute; 
border-radius: 50%; 
margin-left: -3px;
width: 50px; 
height: 50px; 
background: $b1; 
}
.container-view ul.list-tabs li h2, h3  {
padding: 0 4em; 
line-height: 1.4; 
}
.container-view ul.list-tabs li  h3  {
font-size: 0.938em; 
padding: 0 4.2em; 
color: grey; 
}



.container-view.view_1 ul.list-tabs li:nth-child(2) {

      transition: all 600ms $easeOutQuint; /* easeOutQuint */
		
		-webkit-transition-delay: 0.5s; /* Safari */
    transition-delay: 0.5s;
		
}
.container-view.view_1 ul.list-tabs li:nth-child(3) {

        transition: all 600ms $easeOutQuint; /* easeOutQuint */
		
		-webkit-transition-delay: 0.5s; /* Safari */
    transition-delay: 0.5s;
}
.container-view.view_1 ul.list-tabs li:nth-child(3) {

        transition: all 600ms $easeOutQuint; /* easeOutQuint */
		
		-webkit-transition-delay: 0.5s; /* Safari */
    transition-delay: 0.5s;
}

.container-view.view_1 ul.list-tabs li:nth-child(4) {
  
        transition: all 600ms $easeOutQuint; /* easeOutQuint */
	
	-webkit-transition-delay: 0.5s; /* Safari */
    transition-delay: 0.5s;
}



              
            
!

JS

              
                

$('#view-1' ).bind( 'click', function(e) {

		$( this ).toggleClass( 'active' );
		e.preventDefault();
		
		
		$( '.container-view' ).toggleClass( 'view_1' );
		
		

});

              
            
!
999px

Console