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

              
                <div class="hero">
  
  <div class="parallax-layer layer-6"></div>
  <div class="parallax-layer layer-5"></div>
  <div class="parallax-layer layer-4"></div>
  <div class="parallax-layer bike-1"></div>
  <div class="parallax-layer bike-2"></div>
  <div class="parallax-layer layer-3"></div>
  <div class="parallax-layer layer-2"></div>
  <div class="parallax-layer layer-1"></div>
  <div class="logo">
    <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/24650/logo.svg" alt=""  />
  </div>
</div>

<nav>
  <ul>
    <li><a href="#">Forside</a></li>
    <li><a href="#">Vejr</a></li>
    <li><a href="#">Tilmelding</a></li>
    <li><a href="#">Galleri</a></li>
    <li><a href="#">Sponsorer</a></li>
    <li><a href="#">kontakt</a></li>
  </ul>
</nav>

<div class="light-bg">
  <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/24650/Group_4.svg" alt="" />
</div>



<div class="dark-bg">
  <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/24650/Group_5.svg" alt="" />
</div>

<div class="light-bg">
<p class="extra">Jyske Ås arrangeres af Lions Club Dronninglund med det formål at samle midler ind til uddeling i henhold til Lions formålet. Alt indsamlet bliver uddelt og alt arbejde er frivilligt arbejde. Alt administration betales af Lions medlemmerne.</p>
  </div>


<script>
WebFontConfig = {
    google: { families: [ 'Lato:400,300,300italic,400italic,700,700italic,900,900italic:latin' ] }
  };
  (function() {
    var wf = document.createElement('script');
    wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
    wf.type = 'text/javascript';
    wf.async = 'true';
    var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(wf, s);
  })(); 
</script>
              
            
!

CSS

              
                * {
  box-sizing: border-box;
}
body {
  font-family: 'Lato', sans-serif;
}

.hero {
  width: 100%;
  // height: 100%;
  min-height: 450px;
  position: relative;
  top: 0;
  left: 0;
  background-color: #d9edfd,
  //transform: translate3d(0,0,0); 
}

@each $index, $speed, $height in (1, 20s, 136px),
                                 (2, 30s, 145px),
                                 (3, 55s, 158px),
                                 (4, 75s, 468px),
                                 (5, 95s, 311px),
                                 (6, 120s, 222px) {
  .layer-#{$index} {
    animation: parallax_fg linear $speed infinite both;
    background:  url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/24650/#{$index}.png) 0 100% repeat-x;
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size:  auto $height;
  }
}

.bike-1,
.bike-2 {
  background:  url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/24650/bike.png) 0 100% no-repeat;
  z-index: 1;
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  background-size:  auto 75px;
}

.bike-1 {
  animation: parallax_bike linear 10s infinite both;
}

.bike-2 {
  animation: parallax_bike linear 15s infinite both;
}



@keyframes parallax_fg {  
  0% { background-position: 2765px 100%; } 
  100% {background-position: 550px 100%; } 
}

@keyframes parallax_bike {  
  0% { background-position: -300px 100%;} 
  100% {background-position: 2000px 100%; } 
}

.logo {
  margin: 70px auto;
  // left: 50%;
  // display: block;
  position: absolute;
  z-index: 2;
  width: 100%;
  
  img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    @media (max-width: 700px) {
      max-width: 90%;
    }
  }
}

nav {
  background-color: #12212f;
  overflow: hidden;
  ul {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  li {
    @media (max-width: 700px) {
      width: 50%;
      text-align: center;
    }
    padding: 10px 20px;
  }
  a {
    /* Tilmelding: */
    font-weight: 700;
    font-size: 1.25em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
  }
}

.dark-bg {
  background-color: #12212f;
  padding: 50px 50px;
  img {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
  }
}

.light-bg {
  background-color: #fff;
  padding: 50px 50px;
  img {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
  }
}

.extra {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #12202F;
  letter-spacing: 0px;
  line-height: 27px;
}
              
            
!

JS

              
                
              
            
!
999px

Console