-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTemplate.html
83 lines (76 loc) · 2.94 KB
/
Template.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
<!DOCTYPE html>
<html>
<head>
<title>Test reseau RC</title>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script src="../js/network.js" type="text/javascript" charset="utf-8"></script>
<script src="../js/TMD_network.js" type="text/javascript" charset="utf-8"></script>
<script src="../js/TMD_data.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart", "table"]});
// Set callback to run when API is loaded
google.setOnLoadCallback(function () {init_new('gr_reseau', 'axes')});
</script>
<meta charset="utf-8" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<section>
<div id="boutons" class="menu">
<div id="bt_equipes" class="btn">
<button id="axesBtn" onclick="init_new('gr_reseau', 'axes' );">Axes</button>
</div>
<div id="bt_transitions" class="btn">
<button id="groupsBtn" onclick="init_new('gr_reseau', 'groupes');">Groupes</button>
</div>
<!--
<div id="bt_processus" class="btn">
<select name="processus" onchange="changeNetwork('processus');" class="selectBtn">
<option value="gen_processus">Processus</option>
<option value="organisation_transitions">Liens subjectifs entre les transitions</option>
<option value="logiques_transitions">Logiques spatiales des transitions</option>
</select>
</div>
-->
<div id="bt_transitions2" class="btn">
<button id="transitionsBtn" onclick="init_new('gr_reseau', 'transitions');">Transitions</button>
</div>
<div id="bt_reset" class="btn">
<button id="resetBtn" onclick="window.location.href=window.location.href">Reset</button>
</div>
</div>
</section>
<section>
<div id="graphique" class="central">
<div id="gr_titre" class="network">TITRE DU RÉSEAU</div>
<div id="gr_reseau" class="network">
</div>
<div id="gr_sources" class="network">
Sources du réseau, CHAPS etc.... et blabla
<button id="mainExportBtn" class="exportBtn" onclick="export_mainNetwork();">Export du réseau courant</button>
</div>
</div>
</section>
<aside>
<div id="barre_laterale" class="description">
<div id="bl_legende" class="lateral">
<div id="bl_legende_titre" class="lat_title">
<b>LÉGENDE</b>
<button id="legendExportBtn" class="exportBtn" onclick="export_legendNetwork();">Exporter</button>
</div>
<div id="bl_legende_content" class="lat_content">
</div>
</div>
<div id="bl_selection" class="lateral">
<div id="bl_selection_titre" class="lat_title">
<span title="Vous pouvez sélectionner des noeuds en cliquant dessus, ou en dessinant une sélection avec la touche Maj enfoncée.">
<b>SELECTION</b> <img src="information-blue.svg" height="15px" align="right"/>
</span>
</div>
<div id="bl_selection_content" class="lat_content">
</div>
</div>
</div>
</aside>
</body>
</html>