-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
101 lines (96 loc) · 3.59 KB
/
test.html
File metadata and controls
101 lines (96 loc) · 3.59 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<link rel="stylesheet" href="css/test.css">
<title>Test</title>
</head>
<body>
<div class="container-fluid">
<table class="table table-striped">
<caption>table title and/or explanatory text</caption>
<thead>
<tr>
<th></th>
<th>AT241</th>
<th>AT242</th>
<th>AT335</th>
<th>AT336</th>
<th>AT337</th>
<th>AT338</th>
<th>S818</th>
<th>S821</th>
<th>S919</th>
<th>S1002</th>
<th>S1022A</th>
</tr>
</thead>
<tbody>
<tr>
<td>08:00</br>|</br>09:00</td>
<td><button type="button" class="btn btn-block" data-toggle="modal" data-target="#myModal"></button></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr><td>09:00</br>|</br>10:00</td></tr>
<tr><td>10:00</br>|</br>11:00</td></tr>
<tr><td>11:00</br>|</br>12:00</td></tr>
<tr><td></td></tr>
<tr><td>13:00</br>|</br>14:00</td></tr>
<tr><td>14:00</br>|</br>15:00</td></tr>
<tr><td>15:00</br>|</br>16:00</td></tr>
<tr><td>16:00</br>|</br>17:00</td></tr>
<tr><td>17:00</br>|</br>18:00</td></tr>
<tr><td>18:00</br>|</br>19:00</td></tr>
<tr><td>19:00</br>|</br>20:00</td></tr>
<tr><td>20:00</br>|</br>21:00</td></tr>
</tbody>
</table>
</div>
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal"></button>
<!-- Modal -->
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">今生的我還在讀前世訣別的一紙書</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<p>你們覺得.....</p>
<p>明天的自己會做些甚麼?</p>
<p>以為明天還能安穩的睡覺</p>
<p>以為明天還能在床上美美地睡到自然醒?</p>
<p>以為自己身邊的人....</p>
<p>明天也還是一樣會在自己的身邊嗎?</p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
<script src="js/test.js"></script>
</body>
</html>