-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmumps.html
More file actions
76 lines (61 loc) · 1.71 KB
/
mumps.html
File metadata and controls
76 lines (61 loc) · 1.71 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Shots! Shots! Shots!</title>
<style type="text/css">
body {
color: #5d5d5d;
font-family: Helvetica, Arial, sans-serif;
}
h1 {
font-size: 30px;
margin: auto;
margin-top: 50px;
}
.container {
max-width: 800px;
margin: auto;
}
/* Specific mapael css class are below
* 'mapael' class is added by plugin
*/
.mapael .map {
position: relative;
}
.mapael .mapTooltip {
position: absolute;
background-color: #fff;
-moz-opacity: 0.70;
opacity: 0.70;
filter: alpha(opacity=70);
border-radius: 10px;
padding: 10px;
z-index: 1000;
max-width: 200px;
display: none;
color: #343434;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-mousewheel/3.1.13/jquery.mousewheel.min.js"
charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/raphael/2.2.7/raphael.min.js" charset="utf-8"></script>
<script src="js/jQuery-Mapael-2.2.0/js/jquery.mapael.js" charset="utf-8"></script>
<script src="js/jQuery-Mapael-2.2.0/js/maps/usa_states.js" charset="utf-8"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>
</head>
<body>
<div class="container">
<div class="mapcontainer">
<div class="map">
<span>Alternative content for the map</span>
</div>
<div class="areaLegend">
<span>Alternative content for the legend</span>
</div>
</div>
</div>
<script src="js/mumpsData.js"></script>
</body>
</html>