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

Save Automatically?

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>
<head>
	<title>CSS3 Progress Bars</title>
	<meta charset="utf-8">
	<link rel="stylesheet" href="style.css">

	<!-- Scripts -->
	<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
	<script type="text/javascript">
    $(document).ready(function() {
      
      // Add the animated stripe (so it doesn't clutter up the beautiful HTML)
      $('.progress-bar .completion').append('<span class="zebra">////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////</span>')
      
      
      // Fake some progress bar action
      setTimeout(function() {
        $('.blue.progress-bar .completion').css('width', '20%').find('strong').html('20%')
      },100);
      
      setTimeout(function() {
        $('.blue.progress-bar .completion').css('width', '50%').find('strong').html('50%')
      },300);
      
      setTimeout(function() {
        $('.blue.progress-bar .completion').css('width', '90%').find('strong').html('90%')
      },500);
      
      setTimeout(function() {
        $('.blue.progress-bar .completion').css('width', '100%').find('strong').html('100%')
        $('.green.progress-bar .completion .zebra').remove()
      },700);
    });
	</script>
</head>
<body>
	<div id="container">

		<h1>CSS3 Progress Bars</h1>
		<div id="bars-container">
			<div class="blue progress-bar">
			  <div class="completion" style="width:100%"><strong>100%</strong></div>
			</div>
			<div class="orange progress-bar alt">
			  <div class="completion" style="width:40%"><strong>40%</strong></div>
			</div>
			<div class="green progress-bar">
			  <div class="completion" style="width:10%"><strong>10%</strong></div>
			</div>
		</div>

	</div>

</body>
</html>
              
            
!

CSS

              
                /************
Animated CSS progress bars based on Galen Gidman's work (http://galengidman.com/2010/12/20/css3-progress-bars)

c[~] Kevin Holesh ([email protected])
************/

/* 

This is just some code to make the page look nice, but
it's not at all essential to making the progress bars
work. Feel free to ignore it.

*/

@import url(https://fonts.googleapis.com/css?family=Droid+Serif);*{margin:0;padding:0}body{width:640px;margin:auto;padding:100px 0 50px 0;background:url(body-bg.png) #222}#container{font:16px/24px 'Droid Serif',Georgia,serif;text-align:center;color:#fff;text-shadow:0 1px 0 #000}h1{font-size:36px;line-height:36px}h3{font-size:18px;margin-top:50px}a{color:#fff}#bars-container{margin:50px 0}.progress-bar{float:left;margin:10px 0}.alt{float:right}.clear{clear:both}


/* progress bar base */
.progress-bar {
  background-color: #191919;
  border-radius: 16px;
  padding: 4px;
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 24px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -webkit-box-shadow: inset 0 1px 2px #000, 0 1px 0 #2b2b2b;
  -moz-box-shadow: inset 0 1px 2px #000, 0 1px 0 #2b2b2b;
  box-shadow: inset 0 1px 2px #000, 0 1px 0 #2b2b2b;
}

/* code for the inner (colorful) part of the bar */
.progress-bar .completion {
  background: #999;
  display: block;
  font: bold 16px/24px sans-serif;
  position: absolute;
  overflow: hidden;
  max-width: 97.5% !important; /* Prevent a full bar from overflowing */
  height: 24px;
  text-indent: -9999px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 3px rgba(0, 0, 0, 0.4),
    0 1px 1px #000;
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 3px rgba(0, 0, 0, 0.4),
    0 1px 1px #000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 
   inset 0 -1px 3px rgba(0, 0, 0, 0.4), 
   0 1px 1px #000;
  -webkit-transition: width 0.3s linear;
  -moz-transition: width 0.3s linear;
  transition: width 0.3s linear;
}

@-webkit-keyframes scrollin {
	0% { left: -20px; }
	100% { left: -92px; } 
}
@-moz-keyframes scrollin {
  0% { left: -20px; }
	100% { left: -92px; }
}
@keyframes scrollin {
  0% { left: -20px; }
	100% { left: -92px; }
}

/* code to stripe the bars */
.progress-bar .completion .zebra {
  color: black;
  font: normal 120px/80px sans-serif;
  letter-spacing: -15px;
  display: block;
  position: absolute;
  top: 0;
  left: -20px;
  width: 300%;
  height: 24px;
  opacity: 0.06;
  overflow: hidden;
  text-align: left;
  text-indent: 0;
  z-index: 1;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -webkit-transform: skewX(-10deg);
  -moz-transform: skewX(-10deg);
  -o-transform: skewX(-10deg);
  transform: skewX(-10deg);
  
  -webkit-animation-name: scrollin; 
  -webkit-animation-duration: 3.2s; 
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  
  /* Doesn't work in FF yet. Will in version 5.0 */
  -moz-animation-name: scrollin; 
  -moz-animation-duration: 3.2s; 
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  animation-name: scrollin; 
  animation-duration: 3.2s; 
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  
  /* I hate doing it, but I need it or the HTML gets very complex */
  filter: alpha(opacity = 06);
}


/* code for the colors */
.blue .completion { 
  background: #099;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#099), to(#006A6B));
  background: -moz-linear-gradient(top, #099, #006A6B);
  text-indent: 0;
}

.pink .completion { 
  background: #f09;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f36), to(#AC2246));
  background: -moz-linear-gradient(top, #f36, #AC2246);
}

.green .completion { 
  background: #7EBD01;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#7EBD01), to(#568201));
  background: -moz-linear-gradient(top, #7EBD01, #568201);
}

.orange .completion { 
  background: #f90;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f90), to(#f60));
  background: -moz-linear-gradient(top, #f90, #f60);
  text-indent: 0;
}
              
            
!

JS

              
                
              
            
!
999px

Console