Skip to content

Commit 74e0688

Browse files
333
1 parent d862a3e commit 74e0688

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

index.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Bootstrap 实例 - 堆叠的进度条</title>
6+
<link href="bootstrap-3.3.5/css/bootstrap.min.css" rel="stylesheet">
7+
<link rel="stylesheet" type="text/css" href="public/style.css">
8+
<script src="bootstrap-3.3.5/js/jquery.min.js"></script>
9+
<script src="bootstrap-3.3.5/js/bootstrap.min.js"></script>
10+
<script type="text/javascript" src="public/common.js"></script>
11+
</head>
12+
<body>
13+
14+
<div id="bar" class="progress">
15+
<div id="barId" class="progress-bar progress-bar-success" role="progressbar"
16+
style="width: 40%;">
17+
<span id="info" >40% 完成</span>
18+
</div>
19+
</div>
20+
<label id="sizeLab">总容量:</label><label id="maxSize">50GB</label>
21+
<input id="barInput" type="text" placeholder="The num 0 to 100"></input>
22+
<button onclick="changeBarVal()" >Click Me</button>
23+
</body>
24+
</html>

0 commit comments

Comments
 (0)