-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·43 lines (38 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<title>Designing With Data</title>
<script src="d3/d3.min.js"></script>
<script src="lodash/lodash.js"></script>
<link rel="stylesheet" type="text/css" href="css/common.css">
<link rel="stylesheet" type="text/css" href="css/underground.css">
<link rel="stylesheet" type="text/css" href="css/persecond.css">
</head>
<body>
<svg id="slide" width="1024" height="768">
<g id="content" width="1024" height="768">
</g>
<g id="background">
<!-- <polygon points="0,0 1024,0 0,70" class="presTriangle" />
<polygon points="1025,768 0,768 1025,698" class="presTriangle" />
<text x="512" y="354" class="dwdHeader" id="slideTitle">Designing with Data</text>
<g class="dwdFooter">
<text x="512" y="404" id="slideUserName">Joe Pavitt</text>
<text x="512" y="442" id="slideUserTitle">UI Designer & Developer, CICS Tools</text>
</g> -->
</g>
</svg>
<div id="controls">
<div id="slide-left" onclick="back()">
</div>
<div id="slide-right" onclick="forward()">
</div>
</div>
<div id="contentHTML">
</div>
<script src="js/cicsnetwork.js" type="text/javascript"></script>
<script src="js/underground_latlong.js" type="text/javascript"></script>
<script src="js/thingspersecond.js" type="text/javascript"></script>
<script src="js/functions.js" type="text/javascript"></script>
</body>
</html>