-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph3.html
26 lines (25 loc) · 921 Bytes
/
graph3.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
<html>
<head>
<title>India Lights</title>
<link rel="stylesheet" href="style.css">
<script src="graph3.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vega@4"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/vega-embed@3"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
</head>
<body>
<div id="view"></div>
<div id="year">
<input
id="slider"
type="range"
min="1993"
max="2013"
step="1"
data-orientation="vertical"
>
<h4 id="value"></h4>
</div>
</body>
</html>