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

              
                <!DOCTYPE html>
<html lang="en">
 <script src="https://cdn.typetura.com/typetura.js?apiKey=XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXX"></script>
<head>
  
<script
        src="https://code.jquery.com/jquery-3.5.1.min.js"
        integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
        crossorigin="anonymous"></script>

<!-- STYLESHEET LINKS -->
<link rel="stylesheet" type="text/css" href="main.css" />

<!-- FONT LINKS -->
<link rel="stylesheet" type="text/css" href="../MyFontsWebfontsKit.css">

  <!-- JQUERY LINK -->
  <script src="jquery.js"></script>

</head>

<body>

<!-- Top Bar Element -->

<div class="topBar">
    <p>Top Bar</p>
</div>

<div class="sectionMenu">
    <p>Section Menu</p>
</div>

<!-- Section 1 -->

<div class="section hero">
    <h1>Hero</h1>
</div>

<!-- Section 2 -->

<div class="section one">
    <h2>Section 1</h2>
</div>

<!-- Section 1 -->

<div class="section two">
    <h2>Section 2</h2>
</div>

 <!-- This div is used to indicate the original position of the scrollable fixed div. -->

 <div class="scroller_anchor"></div>

 <!-- This element should fix directly below the topbar on screens less than 1080px wide and below the section menu on screens above 1080px -->

<div class="fixed-element">
    <h3>Element becomes fixed</h3>
</div>

<!-- Section 2 -->

<div class="section two">
    <h2>Section 2</h2>
</div>

<!-- Section 3 -->

<div class="section three">
    <h2>Section 3</h2>
</div>

<!-- Section 4 -->

<div class="section four">
    <h2>Section 4</h2>
</div>

<!-- Section 5 -->

<div class="section five">
    <h2>Section 5</h2>
</div>

</body>
</html>
              
            
!

CSS

              
                * {
    box-sizing: border-box;  
 }
 
 html, body {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  body {
     width: 100%;
     height: 100%;
      font-family: HelveticaLTWXX-Roman, arial, sans-serif;
     font-style: normal;
     font-size: 16px;
     color: white;
     background-color: white;
     margin: 0;
     padding: 0;
     scroll-behavior: smooth;
     transition: all .5s;
  }

  /******************************************* HEADINGS *****************************************/

  h1, h2, h3 {
      margin: 0;
      padding: 0;
          font-family: HelveticaNowDisplay-XBd, arial, sans-serif;
      font-weight: 600;
  }

  h1 {
    --tt-key: h1;
    --tt-max: 2560;
    font-size: 4rem;
    width: 85%;
    margin: 0 auto;
    text-align: center;
  }

  @keyframes h1 {
    0%, 12.5% {
        font-size: 4rem;
    }

    100% {
        font-size: 12rem;
    }
}

  h2 {
    --tt-key: h2;
    --tt-max: 2560;
    font-size: 2rem;
  }

  @keyframes h2 {
    0%, 12.5% {
        font-size: 2rem;
    }

    100% {
        font-size: 10rem;
    }
}

h3 {
     font-family: HelveticaLTWXX-Roman, arial, sans-serif;
    font-weight: normal;
    font-size: 1.5rem;
}


/******************************************* TOP BAR *****************************************/

.topBar {
    display: grid;
    position: fixed;
    top: 0;
    z-index: 2;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 75px;
    background-color: #0c0c0c;
}

.topBar p {
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
}


/******************************************* SECTION MENU *****************************************/

.sectionMenu {
    display: grid;
    position: fixed;
    bottom: 0px;
    z-index: 2;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 60px;
    background-color: #141414;
}

.sectionMenu p {
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
}


/******************************************* CONTENT SECTIONS *****************************************/

.section {
    position: static;
    top: 0;
    display: grid;
    align-content: center;
    justify-content: center;
    width: 100%;
    padding: 20rem 0 20rem 0;
}

.hero {
    background-color: #035dbc;
}

.one {
    background-color: #a9a9a9;
}

.two {
    background-color: #bebebe;
}

.three {
    background-color: #d0d0d0;
}

.four {
    background-color: #dcdcdc;
}

.five {
    background-color: #f0f0f0;
}


/******************************************* SCROLL ANCHOR *****************************************/

.scroller_anchor{
    height:0px;
    margin:0;
    padding:0;
  }


/************************************ ELEMENT FIXES TO TOP ON SCROLL PAST ********************************/

.fixed-element {
    display: grid;
    width: 100%;
    height: 60px;
    align-content: center;
    justify-content: center;
    background-color: #0c0c0c;
    transition: all 0.5s ease-in-out;
}

/********************************************* BREAKPOINT *****************************************/

@media only screen and (min-width: 1080px) {

    .sectionMenu {
        top: 75px;
    }

    .hero {
        top: 135px;
    }

}
              
            
!

JS

              
                // ADJUST THE TOP POSITION OF THE FIXED PERSONA THUMBNAILS BUTTON ROW BETWEEN SMALL AND LARGE DEVICES - (1080PX)  //


function myFunction(x) {

    if (x.matches) { // If media query matches
  
      $(window).scroll(function(e) {
  
  
        var scroller_anchor = $(".scroller_anchor").offset().top;
         
      
        if ($(this).scrollTop() >= scroller_anchor && $('.fixed-element').css('position') != 'fixed') 
        { 
          $('.fixed-element').css({
              'position': 'fixed',
              'top': '135px',
              'z-index': '2',
              'box-shadow': '0px 3px 3px rgba(0, 0, 0, 0.5)'
          });
           
            $('.scroller_anchor').css('height', '60px');
        } 
        
        else if ($(this).scrollTop() < scroller_anchor && $('.fixed-element').css('position') != 'relative') 
        {    
             
            $('.scroller_anchor').css('height', '0px');
      
            $('.fixed-element').css({
              'position': 'relative',
              'top': '0px',
              'box-shadow': 'none'
          });
        }
      });
  
    }
    
    else {
  
      $(window).scroll(function(e) {
  
  
        var scroller_anchor = $(".scroller_anchor").offset().top;
         
      
        if ($(this).scrollTop() >= scroller_anchor && $('.fixed-element').css('position') != 'fixed') 
        { 
          $('.fixed-element').css({
              'position': 'fixed',
              'top': '140px',
              'z-index': '2',
              'box-shadow': '0px 3px 3px rgba(0, 0, 0, 0.5)'
          });
           
            $('.scroller_anchor').css('height', '60px');
        } 
        
        else if ($(this).scrollTop() < scroller_anchor && $('.fixed-element').css('position') != 'relative') 
        {    
             
            $('.scroller_anchor').css('height', '0px');
      
            $('.fixed-element').css({
              'position': 'relative',
              'top': '0px',
              'box-shadow': 'none'
          });
        }
      });
    }
  }
  
  var x = window.matchMedia("(min-width: 1080px)")
  myFunction(x) // Call listener function at run time
  x.addListener(myFunction) // Attach listener function on state changes 
  
              
            
!
999px

Console