-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfitsviewer.html
49 lines (43 loc) · 863 Bytes
/
fitsviewer.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
<html>
<head>
<title>Javascript FITS Viewer</title>
<script src="binaryajax.js"></script>
<script src="excanvas.js"></script>
<script src="jquery-1.6.min.js"></script>
<script src="fits.js"></script>
<script src="fitsviewer.js"></script>
<script type="text/javascript">
$(document).ready(function(){
fv = new FitsViewer();
});
</script>
<style>
body {
margin: 10px;
font-family: Arial, sans-serif;
background-color: white;
color: black;
}
a { color: #5555aa; }
canvas { border: 3px solid #000000; }
code { color: #5555aa; }
pre { color: #5555aa; }
.dragover {
border: 3px dashed #999999;
}
.loader {
background-color: rgba(100,100,100,0.4);
color:white;
position:absolute;
text-align: center;
margin: auto;
}
.loader_inner {
margin: 10px;
}
</style>
</head>
<body>
<div id="FITSViewer"></div>
</body>
</html>