-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathex2.html
More file actions
38 lines (34 loc) · 786 Bytes
/
ex2.html
File metadata and controls
38 lines (34 loc) · 786 Bytes
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html>
<head>
<script language="javascript" src="dom-drag.js"></script>
<style type="text/css">
#root {
position:absolute;
height:100px;
width:150px;
background-color:#F4F4F4;
border:1px solid #333;
}
#handle {
margin:2px;
padding:2px;
width:142px;
color:white;
background-color:navy;
font-family:verdana, sans-serif;
font-size:10px;
}
</style>
</head>
<body>
<div id="root" style="left:20px; top:20px;">
<div id="handle">Handle</div>
</div>
<script language="javascript">
var theHandle = document.getElementById("handle");
var theRoot = document.getElementById("root");
Drag.init(theHandle, theRoot);
</script>
</body>
</html>