-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
27 lines (24 loc) · 763 Bytes
/
Copy pathtest.html
File metadata and controls
27 lines (24 loc) · 763 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
<!DOCTYPE html>
<html>
<head>
<link href = "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
rel = "stylesheet">
<script src = "https://code.jquery.com/jquery-1.10.2.js"></script>
<script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<style>
#draggable { width: 150px; height: 150px; padding: 0.5em; background:#eee;}
</style>
<script>
$(function() {
$( ".modificable" ).draggable();
});
</script>
</head>
<body>
<div id = "draggable">
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" class="modificable">
<rect class="" x="20" y="20" width="4" height="4" style=" fill: #000 " id=""/>
</svg>
</div>
</body>
</html>