-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovable.html
36 lines (35 loc) · 1.09 KB
/
movable.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
<!DOCTYPE html>
<head>
<title>jQuery UI Sortable - Example</title>
<link href="http://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<style>
#sortable-1 { list-style-type: none; margin: 0;
padding: 0; width: 25%; }
#sortable-1 li { margin: 0 3px 3px 3px; padding: 0.4em;
padding-left: 1.5em; font-size: 17px; height: 16px; }
.default {
background: #cedc98;
border: 1px solid #DDDDDD;
color: #333333;
}
</style>
<script>
$(function() {
$( "#sortable-1" ).sortable();
});
</script>
</head>
<body>
<ul id="sortable-1">
<li class="default">Product 1</li>
<li class="default">Product 2</li>
<li class="default">Product 3</li>
<li class="default">Product 4</li>
<li class="default">Product 5</li>
<li class="default">Product 6</li>
<li class="default">Product 7</li>
</ul>
</body>
</html>