-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (117 loc) · 4.36 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Таймлайн жизни русских писателей XVIII века</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Интерактивный таймлайн">
<meta name="author" content="Борис Орехов">
<script src='./timelines-chart.min.js'></script>
<script src='./jquery-3.6.3.js'></script>
<style type="text/css">
/* Sticky footer styles
-------------------------------------------------- */
html,
body {
height: 100%;
/* The html and body elements cannot have any padding or margin. */
}
/* Wrapper for page content to push down footer */
#wrap {
min-height: 100%;
height: auto !important;
height: 100%;
/* Negative indent footer by it's height */
margin: 0 auto -60px;
}
/* Set the fixed height of the footer here */
#push,
#footer {
height: 60px;
}
#footer {
background-color: #f5f5f5;
}
/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
#footer {
margin-left: -20px;
margin-right: -20px;
padding-left: 20px;
padding-right: 20px;
}
}
/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */
.container {
width: auto;
max-width: 980px;
}
.container .credit {
margin: 20px 0;
}
</style>
<!-- Le styles -->
<link href="./bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="./bootstrap-responsive.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="./html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="#">Таймлайн писателей XVIII в.</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="active"><a href="https://pushkinskijdom.ru/">ИРЛИ РАН</a></li>
<li><a href="http://pushkinskijdom.ru/laboratoriya-tsifrovyh-issledovanij-literatury-i-folklora_/">Лаборатория цифровых исследований литературы и фольклора</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<p> </p>
<h1>Таймлайн жизни русских писателей XVIII в.</h1>
<p>На графике отражены годы жизни персоналий, вошедших в <a href="https://dataverse.pushdom.ru/dataset.xhtml?persistentId=doi:10.31860/openlit-2022.1-B002">Словарь русских писателей XVIII века</a>.<br> Для таймлайна отобраны 70 авторов, которым посвящены наиболее длинные статьи в словаре.</p>
</div> <!-- /container -->
<script>
var myData = null;
$.ajax({
'async': false,
'global': false,
'url': "./data.json",
'dataType': "json",
'success': function (data) {
myData = data;
}
});
TimelinesChart()(document.body)
.zScaleLabel('Шкала')
.zQualitative(true)
.leftMargin(40)
.data(myData);
</script>
<div id="push"></div>
</div>
<div id="footer">
<div class="container">
<p class="muted credit">Веб-приложение создано <a href="http://nevmenandr.net/bo.php">Борисом Ореховым</a> на основе <a href="https://github.com/vasturiano/timelines-chart">открытого кода</a>.</p>
</div>
</div>
</body>
</html>