-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
55 lines (40 loc) · 1.26 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<style>
body {
min-width:600px;
min-height:550px;
overflow-x:hidden;
background-color: black;
}
.imageWrapper {
position: relative;
}
.overlayImage {
position: absolute;
top: 0;
left: 0;
z-index:-1;
}
a {text-decoration:none; color: white;}
</style>
<script src="popup.js"></script>
</head>
<body id="bod">
<br>
<a href="options.html"><img src="options.png"></a>
<div id="radar">
</div>
<!--
<img class="overlayImage" src="http://radar.weather.gov/ridge/Overlays/Topo/Short/DIX_Topo_Short.jpg">
<img class="overlayImage" src="http://radar.weather.gov/ridge/RadarImg/N0R/DIX_N0R_0.gif">
<img class="overlayImage" src="http://radar.weather.gov/ridge/Overlays/County/Short/DIX_County_Short.gif">
<img class="overlayImage" src="http://radar.weather.gov/ridge/Overlays/Cities/Short/DIX_City_Short.gif">
<img class="overlayImage" src="http://radar.weather.gov/ridge/Overlays/Rivers/Short/DIX_Rivers_Short.gif">
<img class="overlayImage" src="http://radar.weather.gov/ridge/Overlays/Highways/Short/DIX_Highways_Short.gif">
<img class="overlayImage" src="http://radar.weather.gov/Warnings/Short/DIX_Warnings_0.gif">
<img class="overlayImage" src="http://radar.weather.gov/Legend/N0R/DIX_N0R_Legend_0.gif">
-->
</body>
</html>