js.html
1.28 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
<script src="app/view/sfcwebTopov/sfcwebTopovDemo.js"></script>
<script src="app/view/sfcwebTopov/sfcwebTopovOverlay.js"></script>
<style>
/* The Modal (background) */
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 0px;
left: 0px;
top: 0;
width: 37%;
height: 25%;
overflow: auto;
background-color: none;
margin: 178px 0px 0px -8px;
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
</style>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<table id='sfc-info'>
<thead>
<td>SFP ID information</td>
</thead>
<tbody id='sfc-info-body'>
</tbody>
</table>
</div>
</div>