-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (59 loc) · 1.74 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
<!DOCTYPE html>
<html>
<head>
<title>Visu</title>
<meta charset="UTF-8">
<script src="https://d3js.org/d3.v5.min.js"></script>
<script type="text/javascript" src="main.js"></script>
<script type="text/javascript" src="start.js"></script>
<script type="text/javascript" src="LoadData.js"></script>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<div class="timeControl">
</div>
<div class="series">
<div class="view">
</div>
<div class="filters">Visible : </div>
<div class="chatViewPort">
<div class="chat">
</div>
<div class="chatInsight">
<table class="CountM">
<thead>
<tr>
<th>Messages sent</th>
</tr>
</thead>
<tbody></tbody>
</table>
<div><span class="turnLabel">Turns</span> <span class="CountT"></span></div>
</div>
</div>
</div>
<div class="info">
<div class="serieInfo">
<div> Participants : <span class="participants"></span></div>
<div> Duration : <span class="duration"></span></div>
</div>
<div class="eventInfo">
<div> Event Time : <span class="eventDate"></span></div>
<div class="eventType"></div>
<div class="eventOwnData"></div>
</div>
<div class="minimapCotainer">
<input type="checkbox" name="mapSwitch" id="mapSwitch">
<svg class="minimap" preserveAspectRatio viewBox="-46.1 -54.6 54.37 95.9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="shadow">
<feDropShadow dx="0.5" dy="0.5" stdDeviation="0" flood-color="#000000" flood-opacity="0.87"/>
</filter>
</defs>
<g class="plantLayer"></g>
</svg>
<label class="mapButon" for="mapSwitch">🖼️</label>
</div>
</div>
</body>
</html>