Created
July 26, 2017 10:08
-
-
Save WeiChiaChang/abe92ca2e8da86ef69560b63903e8764 to your computer and use it in GitHub Desktop.
Simple Pure CSS Progress Bar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="pt-BR"> | |
<head> | |
<meta chatset="UTF-8" /> | |
<title>CSS Progress Bar</title> | |
<style> | |
.wrapper { | |
width: 500px; | |
} | |
.progress-bar { | |
width: 100%; | |
background-color: #e0e0e0; | |
padding: 3px; | |
border-radius: 3px; | |
box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2); | |
} | |
.progress-bar-fill { | |
display: block; | |
height: 22px; | |
background-color: #659cef; | |
border-radius: 3px; | |
transition: width 500ms ease-in-out; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="wrapper"> | |
<div class="progress-bar"> | |
<span class="progress-bar-fill" style="width: 70%;"></span> | |
</div> | |
</div> | |
</body> | |
</html> |
Beautiful. Exactly what I needed !
thanks... really easy to customize
thanks man great effort
Thank you!
superb. thank you :)
thanks
Thanks
thank you
thanks a lot...
excellent, thanks!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!