"Progress Bar"
Bootstrap 3.3.0 Snippet by allisonflom

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <body> <progress max="100" value="80"> #document-fragment <div pseudo= "-webkit-progress-inner-element"> <div pseudo= "-webkit-progress-bar"> <div pseudo= "-webkit-progress-value" style="width: 80%;"></div> </div> </div> </progress> </body>
body{ padding:10px; } progress[value]{ -webkit-apperance: none; apperance: none; width: 250px; height: 20px; } progress{ -webkit-apperance: progress-bar; box-sizing: border-box; display:inline-bloack; height: 1em; width: 10em; vertical-align: -0.2em; } input, textarea, keygen, button, isindex, user agent stylesheet meter, progress{ -webkit-writing-mode: horizontal-tb; } progress[value]::-webkit-progress-bar{ background-color: #eee; border-radius: 2px; box-shadow: 0 2px 5px rgba(0,0,0,0.25) inset; } progress[value]::-webkit-progress-value{ background-image: -webkit-linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, .1) 33%, rgba(0, 0, 0, .1) 66%, transparent 66%), -webkit-linear-gradient(top, rgba(255, 255, 255, .25), rgba(0, 0, 0, .25)), -webkit-linear-gradient(left, #09c, #f44); border-radius: 2px; background-size: 35px 20px, 100% 100%, 100% 100%; }

Related: See More


Questions / Comments: