Created
January 29, 2012 06:20
-
-
Save laukstein/1697531 to your computer and use it in GitHub Desktop.
Animate to natural width
This file contains hidden or 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
/* Animate to natural width */ | |
body { background: black; padding: 100px; margin: 0; } | |
.progress-bar { | |
border: 2px solid red; | |
border-radius: 14px; | |
overflow: hidden; | |
} | |
.progress-bar > div { | |
color: white; | |
background: red; | |
white-space: nowrap; | |
padding: 10px 20px; | |
box-sizing: border-box; | |
animation: progress-bar 2s; | |
} | |
@keyframes progress-bar { | |
0% { width: 0; } | |
} |
This file contains hidden or 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
<div class="progress-bar"> | |
<div style="width: 100%">Upload is 100% complete</div> | |
</div> | |
This file contains hidden or 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
{"view":"split-vertical","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment