-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3_Interactions.html
More file actions
34 lines (31 loc) · 895 Bytes
/
3_Interactions.html
File metadata and controls
34 lines (31 loc) · 895 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
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta charset="utf-8">
<link rel="stylesheet" href="jquery-ui-1.11.4/jquery-ui.css">
<style>
.box {
border: 1px solid #aaa;
background: #eee;
color: #333;
padding: 10px;
border-radius: 4px;
width: 200px;
}
</style>
</head>
<body>
<h1>jQueryUI-Interactions</h1>
<div class="box">
<h3 class="ui-dialog-titlebar">一个可以拖拽的区块</h3>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae autem sint asperiores accusamus aliquid inventore atque qui aperiam incidunt ea tenetur quae doloremque dicta minima natus ipsum doloribus iste nam.
</div>
<!--注意JS文件的顺序-->
<script src="js/jquery-1.11.3.js"></script>
<script src="jquery-ui-1.11.4/jquery-ui.js"></script>
<script>
$(".box").draggable();
</script>
</body>
</html>