-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (116 loc) · 4.42 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="img/icon.jpg">
<title>滑大好声音</title>
</head>
<body>
<!-- header -->
<div id="header" class="container">
<h1>滑大好声音-敬请期待</h1>
</div>
<!-- for voting -->
<div id="voting" class="container">
<table class="table">
<tr>
<!-- add col-md-3 class for fixed column width-->
<th id="c_id0" class="col-md-4"></th>
<th id="c_id1" class="col-md-4"></th>
<th id="c_id2" class="col-md-4"></th>
</tr>
<tr>
<td id="c_name0"></td>
<td id="c_name1"></td>
<td id="c_name2"></td>
</tr>
<!-- pic -->
<tr>
<td id="c_votes0"></td>
<td id="c_votes1"></td>
<td id="c_votes2"></td>
</tr>
<tr>
<td>
<!-- add col-md-4 for equal column size-->
<div class="progress">
<div class="progress-bar progress-bar-striped active" id="c_prog0" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 45%">
</div>
</div>
</td>
<td>
<div class="progress">
<div class="progress-bar progress-bar-striped active" id="c_prog1" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 45%">
</div>
</div>
</td>
<td>
<div class="progress">
<div class="progress-bar progress-bar-striped active" id="c_prog2" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 45%">
</div>
</div>
</td>
</tr>
<tr class="hide">
<td id="c_score0"></td>
<td id="c_score1"></td>
<td id="c_score2"></td>
</tr>
<tr id="total" class="hide">
<td id="c_total0"></td>
<td id="c_total1"></td>
<td id="c_total2"></td>
</tr>
</table>
</div>
<!-- for repechage -->
<div id="repechage" class="container">
<table class="table">
<!-- preliminary --!>
<!-- <tr class="headRow"> <td id="r_id0"></td> <td id="r_id1"></td> <td id="r_id2"></td> <td id="r_id3"></td> </tr>
<tr> <td id="r_name0"></td> <td id="r_name1"></td> <td id="r_name2"></td> <td id="r_name3"></td> </tr>
<tr> <td id="r_votes0"></td> <td id="r_votes1"></td> <td id="r_votes2"></td> <td id="r_votes3"></td> </tr>
<tr class="headRow"> <td id="r_id4"></td> <td id="r_id5"></td> <td id="r_id6"></td> <td id="r_id7"></td> </tr>
<tr> <td id="r_name4"></td> <td id="r_name5"></td> <td id="r_name6"></td> <td id="r_name7"></td> </tr>
<tr> <td id="r_votes4"></td> <td id="r_votes5"></td> <td id="r_votes6"></td> <td id="r_votes7"></td> </tr>
-->
<!-- <tr class="headRow"> <td id="r_id8"></td> <td id="r_id9"></td> <td id="r_id10"></td> <td id="r_id11"></td> </tr>
<tr> <td id="r_name8"></td> <td id="r_name9"></td> <td id="r_name10"></td> <td id="r_name11"></td> </tr>
<tr> <td id="r_votes8"></td> <td id="r_votes9"></td> <td id="r_votes10"></td> <td id="r_votes11"></td> </tr>
!-->
<!-- final -->
<tr class="headRow"> <td id="r_id0"></td> <td id="r_id1"></td> </tr>
<tr> <td id="r_name0"></td> <td id="r_name1"></td> <td id="r_name2"></td> </tr>
<tr> <td id="r_votes0"></td> <td id="r_votes1"></td> <td id="r_votes2"></td> </tr>
<!-- <tr class="headRow"> <td id="r_id2"></td> <td id="r_id3"></td> </tr>
<tr> <td id="r_name2"></td> <td id="r_name3"></td> </tr>
<tr> <td id="r_votes2"></td> <td id="r_votes3"></td> </tr>
-->
</table>
</div>
<div id="showfour" class="container">
<table class="table">
<tr class="headRow">
<td id="id0"></td> <td id="id1"></td> <td id="id2"></td> <td id="id3"></td> </tr>
<tr> <td id="name0"></td> <td id="name1"></td> <td id="name2"></td> <td id="name3"></td> </tr>
<tr> <td id="votes0"></td> <td id="votes1"></td> <td id="votes2"></td> <td id="votes3"></td> </tr>
</tr>
</table>
</div>
<!-- for poll -->
<div id="poll" class="container">
</div>
<div class="footer">
<div class="container">
<img id="banner" src="img/banner.png"/>
</div>
</div>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/myscript.js"></script>
</body>
</html>