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

              
                <!-- Responsive slide count ranges from 2-5 (could be more, hadn't tested)
     Slides run in reverse order to fix z-index issue
     Can be placed in a container with no issues -->
<div class='slide'> 
  <div>Created by Zach Saucier<br/><br/>https://zachsaucier.com/</div> <!-- Anything can go inside -->
</div>
<div class='slide'>
  <div></div>
</div>
<div class='slide'>
  <div>It works with any HTML you'd like!<br/><br/>And goes in four directions!</div>
</div>
<div class='slide'>
  <div></div>
</div>
<div class='slide'>
  <div></div>
</div>
              
            
!

CSS

              
                /* If it jumps from one slide to the next then refresh the page */
html, body { 
  margin:0; padding:0;
  width: 100%; height: 100%;
  overflow:hidden;    
  -webkit-perspective: 550px;
  perspective: 550px;
}
.slide {
  position:absolute;
  width:100%; height:100%;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}
.slide div { position:absolute; width:100%; height:100%; }
.slide:nth-of-type(1) { -webkit-animation:slideTop 20s 16s ease-out infinite; animation:slideTop 20s 16s ease-in-out infinite; }
.slide:nth-of-type(2) { -webkit-animation:slideRight 20s 12s ease-out infinite;
  animation:slideRight 20s 12s ease-in-out infinite; }
.slide:nth-of-type(3) { -webkit-animation:slideLeft 20s 8s ease-out infinite;
  animation:slideLeft 20s 8s ease-in-out infinite; }
.slide:nth-of-type(4) { -webkit-animation:slideBottom 20s 4s ease-out infinite;
  animation:slideBottom 20s 4s ease-in-out infinite; }
.slide:nth-of-type(5) { -webkit-animation:slideBottom 20s ease-out infinite;
  animation:slideBottom 20s ease-in-out infinite; }

@-webkit-keyframes slideBottom {
  0%,5% { -webkit-transform: rotateX(0); z-index:1; }
  10% { -webkit-transform: rotateX(90deg); }
  13% { z-index:1; -webkit-transform: rotateX(90deg) translateY(100%); }
  50% { z-index:-1; -webkit-transform: rotateX(90deg) translateY(100%); }
  53%,73% { z-index:-1; -webkit-transform:rotateX(0) translateY(0); }
}

@keyframes slideBottom {
  0%,5% { transform: rotateX(0); z-index:1; }
  10% { transform: rotateX(90deg); }
  13% { z-index:1; transform: rotateX(90deg) translateY(100%); }
  50% { z-index:-1; transform: rotateX(90deg) translateY(100%); }
  53%,80% { z-index:-1; transform:rotateX(0) translateY(0); }
  81%,100% { z-index:0; }
}
/* Alternate directions: Use class or :nth-child to select the correct slide you want to affect,
                         otherwise it will affect all of them */
/* .slide { to apply to all */
/* Left */
.slide:nth-of-type(3) {
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes slideLeft {
  0%,5% { -webkit-transform: rotateY(0); z-index:1; }
  10% { -webkit-transform: rotateY(90deg); }
  13% { z-index:1; -webkit-transform: rotateY(90deg) translateX(-100%); }
  50% { z-index:-1; -webkit-transform: rotateY(90deg) translateX(-100%); }
  53%,73% { z-index:-1; -webkit-transform:rotateY(0) translateX(0); }
}
@keyframes slideLeft {
  0%,5% { transform: rotateY(0); z-index:1; }
  10% { transform: rotateY(90deg); }
  13% { z-index:1; transform: rotateY(90deg) translateX(-100%); }
  50% { z-index:-1; transform: rotateY(90deg) translateX(-100%); }
  53%,80% { z-index:-1; transform:rotateY(0) translateX(0); }
  81%,100% { z-index:0; }
}
/* Right */
.slide:nth-of-type(2) {
  -webkit-transform-origin: right center;
  transform-origin: right center; 
} 
@-webkit-keyframes slideRight {
  0%,5% { -webkit-transform: rotateY(0); z-index:1; }
  10% { -webkit-transform: rotateY(-90deg); }
  13% { z-index:1; -webkit-transform: rotateY(-90deg) translateX(100%); }
  50% { z-index:-1; -webkit-transform: rotateY(-90deg) translateX(100%); }
  53%,73% { z-index:-1; -webkit-transform:rotateY(0) translateX(0); }
}
@keyframes slideRight {
  0%,5% { transform: rotateY(0); z-index:1; }
  10% { transform: rotateY(-90deg); }
  13% { z-index:1; transform: rotateY(-90deg) translateX(100%); }
  50% { z-index:-1; transform: rotateY(-90deg) translateX(100%); }
  53%,80% { z-index:-1; transform:rotateY(0) translateX(0); }
  81%,100% { z-index:0; }
}
/* Top */
.slide:nth-of-type(1) { 
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
@-webkit-keyframes slideTop {
  0%,5% { -webkit-transform: rotateX(0); z-index:1; }
  10% { -webkit-transform: rotateX(-90deg); }
  13% { z-index:1; -webkit-transform: rotateX(-90deg) translateY(-150%); }
  50% { z-index:-1; -webkit-transform: rotateX(-90deg) translateY(-150%); }
  53%,73% { z-index:-1; -webkit-transform:rotateX(0) translateY(0); }
} 
@keyframes slideTop {
  0%,5% { transform: rotateX(0); z-index:1; }
  10% { transform: rotateX(-90deg); }
  13% { z-index:1; transform: rotateX(-90deg) translateY(-150%); }
  50% { z-index:-1; transform: rotateX(-90deg) translateY(-150%); }
  53%,80% { z-index:-1; transform:rotateX(0) translateY(0); }
  81%,100% { z-index:0; } 
}

/* End alternate directions */






/* STYLISTIC THINGS: Photos from http://unsplash.com/ */
.slide:nth-of-type(1) div {
  background:#223d65;
  color:white;
  text-align:center;
  padding-top:200px;
  font-size:16pt; 
  font-family: "Andale Mono", AndaleMono, monospace;
}
.slide:nth-of-type(2) div {
  background: url("https://24.media.tumblr.com/61e1f6d73861cfad6e320c6d5dcecc6e/tumblr_mx3trrzUOJ1st5lhmo1_1280.jpg") center center;
  background-size:cover;
}
.slide:nth-of-type(3) div { 
  background: rgb(20,20,20);
  color:white;
  text-align:center;
  padding-top:200px;
  font-size:16pt;
  font-family:Book Antiqua;
}
.slide:nth-of-type(4) div {
  background: url("https://31.media.tumblr.com/3afad829ce330a66b3bbb98831c1c393/tumblr_mx3tpto69r1st5lhmo1_1280.jpg") center center;
  background-size:cover;
}
.slide:nth-of-type(5) div { 
  background: url("https://25.media.tumblr.com/d7c46e775fa6d6c613f10bceb2703b38/tumblr_mx3tqsqckF1st5lhmo1_1280.jpg") center center;
  background-size:cover; 
}
              
            
!

JS

              
                // For more check out zachsaucier.com
              
            
!
999px

Console