-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDraggableFeature.html
More file actions
39 lines (32 loc) · 1.17 KB
/
Copy pathDraggableFeature.html
File metadata and controls
39 lines (32 loc) · 1.17 KB
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
<html>
<head>
<title>DRAGABLE FEATURE</title>
<h1>Daraggabke Feature</h1>
<link rel="stylesheet" href="jqueryui/jquery-ui.css">
<link rel="stylesheet" href="jqueryui/jquery-ui.structure.css">
<link rel="stylesheet" href="jqueryui/jquery-ui.theme.css">
</head>
<body>
<h3>Draggable cubes</h3>
<div>
<div style="height: 100; width: 100; color: brown; margin: 20px ;padding: 0.5em; background-color:chartreuse " class="cube">
<h4>CUBE1</h4>
</div>
<div style="height: 100; width: 100; color:aqua ; margin: 20px ;padding: 0.5em; background-color: darkmagenta" class = "cube">
<h4>CUBE2</h4>
</div>
</div>
</body>
<script
src="https://code.jquery.com/jquery-3.5.0.js"
integrity="sha256-r/AaFHrszJtwpe+tHyNi/XCfMxYpbsRg2Uqn0x3s2zc="
crossorigin="anonymous">
</script>
<script src="jqueryui/jquery-ui.js"></script>
<script type="text/javascript">
$(".cube").draggable({
cursor :"grabbing",
containment :"parent"
})
</script>
</html>