forked from ericmandel/js9
-
Notifications
You must be signed in to change notification settings - Fork 1
/
js9.html
45 lines (45 loc) · 1.43 KB
/
js9.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge;chrome=1" >
<meta name="viewport" content="width=device-width, initial-scale=1">
<link type="image/x-icon" rel="shortcut icon" href="./favicon.ico">
<link type="text/css" rel="stylesheet" href="js9support.css">
<link type="text/css" rel="stylesheet" href="js9.css">
<link rel="apple-touch-icon" href="images/js9-apple-touch-icon.png">
<script type="text/javascript" src="js9support.min.js"></script>
<script type="text/javascript" src="js9.min.js"></script>
<script type="text/javascript" src="js9plugins.js"></script>
<style type="text/css">
#centerdiv {
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 512px;
height: 512px;
}
</style>
<title>JS9</title>
</head>
<body>
<div id="centerdiv">
<div class="JS9Menubar"></div>
<div class="JS9"></div>
<div style="margin-top: 2px;"><div class="JS9Colorbar"></div></div>
</div>
<script type="text/javascript">
$(document).ready(function(){
$("#centerdiv").draggable({
handle: "#JS9Menubar",
opacity: 0.35
});
});
</script>
<p>
</body>
</html>