-
Notifications
You must be signed in to change notification settings - Fork 0
/
dragDrop.html
41 lines (41 loc) · 1.37 KB
/
dragDrop.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
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="">
<style>
.fluiddrag-wrapper{
position: relative;
overflow: visible;
background: #ddd;
width: 100%;
}
.fluiddrag-wrapper div{
position: absolute;
width: 23%;
}
</style>
</head>
<body>
<div id="fluiddrag-wrapper" class="fluiddrag-wrapper">
<div style="height:100px"><h1>1</h1></div>
<div style="height:50px"><h1>2</h1></div>
<div style="height:60px"><h1>3</h1></div>
<div style="height:110px"><h1>4</h1></div>
<div style="height:70px"><h1>5</h1></div>
<div style="height:80px"><h1>6</h1></div>
<div style="height:100px"><h1>7</h1></div>
<div style="height:50px"><h1>8</h1></div>
<div style="height:100px"><h1>9</h1></div>
<div style="height:50px"><h1>10</h1></div>
<div style="height:60px"><h1>11</h1></div>
<div style="height:110px"><h1>12</h1></div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="fluiddrag.js"></script>
</body>
</html>