This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
diagramme_cordes.html
73 lines (59 loc) · 2.5 KB
/
diagramme_cordes.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
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Evéchés et mobilité épiscopale en Europe au XIVème siècle</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- paramétrage pour affichage et zoom adapté à un mobile -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.6/cyborg/bootstrap.min.css"><!-- css bootstrap (style cyborg) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.css" />
<link rel="stylesheet" href="css/style.css">
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script><!--jQuery, nécessaire pour Boostrap -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous">
</script><!-- js de Boostrap-->
<style type="text/css">
path{
stroke: black;
stroke-width: .2px;
}
path.fade{
display: none;
}
</style>
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top" id="header"></div>
<script>
$("#header").load("header.html");
</script>
<h3 class="text-center">
Diagramme en cordes<br>
</h3>
<div class="container"><hr>
<div class="row">
<div class="col-md-2 col-md-offset-3 col-sm-4 col-sm-offset-3 col-xs-6 col-xs-offset-1">
</div>
<div class="col-md-2 col-sm-3 col-xs-4">
</div>
</div>
<div class="row">
<div class="col-md-9">
<div class="border" id="graphe" style="width: 100%; height: 625px; background-color:white;"></div><br>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="js/d3_param_chords.js"></script>
</div>
<div class="col-md-3 text-center text-md-left">
<label>Description</label>
<p class="text-justify">Le graphe permet de visualiser rapidement quels sont les royaumes qui échangent le plus, et avec qui. A gauche, en couleur, ce sont les départ, et à droite
en grisé les arrivées.</p>
</div>
</div>
<div class="navbar-static-bottom"><hr>
<p class="text-center">
Source : Hugues Labarthe, Clerics' Mobilities across the Fourteenth Century, 2012. From Eubel C., Hierarchia catholica, vol. 1.<br>
Infographics by Antoine Rolland and Emmanuel Labrousse.
</p>
</div>
</div>
</body>
</html>