diff options
author | Thomas Park <thomas@thomaspark.me> | 2014-03-23 10:31:30 -0400 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2014-03-24 10:58:00 -0400 |
commit | 34a2c363fae1981318dde3e1ba74ed6bb45de8e3 (patch) | |
tree | 8e19c3c31ca3324207de9f71bd4567f3637fc7b5 /tests | |
parent | bd4c77144b1060406d124a3ceb84b3df5cd3c0b7 (diff) |
add progress bar with label to test page
Diffstat (limited to 'tests')
-rw-r--r-- | tests/components.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/components.html b/tests/components.html index be834614..ef4f444a 100644 --- a/tests/components.html +++ b/tests/components.html @@ -2258,6 +2258,13 @@ <p>Progress bars use CSS3 transitions and animations to achieve some of their effects. These features are not supported in Internet Explorer 9 and below or older versions of Firefox. Opera 12 does not support animations.</p> </div> + <h3 id="progress-basic">With Label</h3> + <div class="progress"> + <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;"> + 60% + </div> + </div> + <h3 id="progress-basic">Basic</h3> <p>Default progress bar with a vertical gradient.</p> <div class="bs-example"> |