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

              
                <section class="slider">

  <nav class="slide-nav">
    <ul>
      <li><a href="#">01</a></li>
      <li><a href="#">02</a></li>
      <li><a href="#">03</a></li>
      <li><a href="#">04</a></li>
      <li><a href="#">05</a></li>
      <li><a href="#">06</a></li>
    </ul>
  </nav>
  
  <ul class="slides">
    <li><img src="https://picsum.photos/1200/640" alt="Slide One"></li>    
    <li><img src="https://picsum.photos/1200/641" alt="Slide Two"></li>
    <li><img src="https://picsum.photos/1200/642" alt="Slide Three"></li>
    <li><img src="https://picsum.photos/1200/643" alt="Slide Four"></li>
    <li><img src="https://picsum.photos/1200/644" alt="Slide Five"></li>
    <li><img src="https://picsum.photos/1200/645" alt="Slide Five"></li>
  </ul> 
  
</section>
              
            
!

CSS

              
                /* Webfont link */
@import url(https://fonts.googleapis.com/css?family=Unica+One);

/* Plugin base styles */

.slider { 
  position: relative;
  width: 100%; 
  overflow: hidden; 
}

.slides { 
  position: relative;
  padding: 0;
  list-style: none;
  letter-spacing: 0;
  word-spacing: 0;
  font-size: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0,0,0);
}

.slides li { 
  display: inline-block; 
  -webkit-backface-visibility: hidden;
}

.slides li img { 
  width: 100%; 
  height: auto;
}

/* Non-plugin styles */

* { 
  margin: 0; 
  padding: 0; 
}

body { 
  position: relative;
  width: 90%;
  max-width: 600px; 
  margin: 0 auto; 
  font-family: 'Unica One', sans-serif;
}

.slide-nav { 
  position: absolute; 
  bottom: 20px;
  right: 20px;
  z-index: 1;
}

.slide-nav ul {
  letter-spacing: 0;
  word-spacing: 0;
  font-size: 0;
}

.slide-nav li { display: inline-block; }

.slide-nav li a {
  display: block;
  color: #444;
  background: #FFF;
  text-decoration: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  text-align: center;
  margin: 0 0 0 6px;
}

.slide-nav li a.active { color: #DEBB1E; }
              
            
!

JS

              
                /**
 * Slimslider v1.1.0
 * @author Kyle Foster
 * MIT license
 */
;(function ( $, window, document, undefined ) {

  $.fn.slimSlider = function ( options ) {

    options = $.extend( {}, $.fn.slimSlider.options, options );

    return this.each(function () {        
      
      // Define our variables
      var counter  = 0,
          element  = $(this),
          wrapper  = element.children('.slides'),
          slide    = wrapper.children('li'),
          slideCnt = slide.length,
          navLink  = element.find('.slide-nav').find('li').find('a'),
          prefix   = (/mozilla/.test(navigator.userAgent.toLowerCase()) && 
                     !/webkit/.test(navigator.userAgent.toLowerCase())) ? '-moz-' : 
                     (/webkit/.test(navigator.userAgent.toLowerCase())) ? '-webkit-' :
                     (/msie/.test(navigator.userAgent.toLowerCase()))   ? '-ms-' :
                     (/opera/.test(navigator.userAgent.toLowerCase()))  ? '-o-' : '';
      
      // Add active class to first nav link
      navLink.first().addClass('active');    
      
      // Auto play function (if selected options)
      if ( options.autoPlay === true ) {          
        
        // Define slideshow variable
        var slideShow;

        // Define play function
        function play() {

          // Don't execute after click function  
          if ( !wrapper.is('.stopped') ) {

            // Slideshow function
            slideShow = setTimeout(function() {
              
              // Slideshow iterator
              if (counter < slideCnt - 1) { counter++; } 
              else { counter = 0; };  

              // Stop browser 'catch up' when switching tabs
              wrapper.stop(true,true);

              // Fire animation function
              animate();

              // Loop our slideshow
              play();
            }, options.autoDelay );
          };
        };

        // Instantiate our play function
        play();
        
        // Define our pause function
        function pause() { clearTimeout(slideShow); };
        
        // Pause on hover (if selected)
        if ( options.hoverPause === true ) {
          wrapper.on({
            mouseenter: function() { pause(); }, 
            mouseleave: function() { play(); }
          });
        };
      }; 

      // Navigation click function
      navLink.on('click', function(e) {
        
        // Stop auto play (if instantiated)
        pause();

        // Add a class to keep animation stopped
        wrapper.addClass('stopped');
        
        // Set counter to new slide position
        counter = $(this).parent().index();
        
        // Fire animation function
        animate();
        
        // Prevent default click action
        e.preventDefault();
      });   

      // Define our animation function
      function animate() {
      
        // Iterate through our navigation links
        navLink.each(function() {
      
          // Cache 'this'
          var currentLink = $(this);          
      
          // Move to counter's position
          if ( counter === currentLink.parent().index() ) {
            navLink.removeClass('active'); // Clear 'active' class
            currentLink.addClass('active'); // And add to selected link
          }
        });

        // Animation
        wrapper
          .css( prefix + 'transition' , prefix + 'transform ' + options.animSpeed ) // Apply transition
          .css( prefix + 'transform' , 'translate(-' + counter * element.width() + 'px, 0)' ) // Animate
          .bind('transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd', function() { 
            wrapper.css( prefix + 'transition' , 'none' ); // Kill transition once animation completes
          });
      }; 

      // Define debulked onresize handler
      function on_resize(c, t) { onresize = function() { clearTimeout(t); t = setTimeout(c, 100) }; return c }; 
      
      // Instantiate resize function      
      on_resize(function() {
      
        // Cache our slider width
        var newWidth = element.width();        
      
        // Set wrapper width & reposition
        wrapper
          .css({ 'width' : newWidth * slideCnt })
          .css( prefix + 'transform' , 'translate(-' + counter * newWidth + 'px, 0)' );        
      
        // Set slide width
        slide.css({ 'width' : newWidth }); 
      })();    
    });
  };

  // Overridable default options
  $.fn.slimSlider.options = {
    animSpeed  : '0.5s', // animation speed
    autoPlay   : true,   // auto play option
    autoDelay  : 4000,   // auto play duration
    hoverPause : true    // auto play pause on hover      
  };

})( jQuery, window, document );

// Instantiate Slimslider
$('.slider').slimSlider();
              
            
!
999px

Console