-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.html
57 lines (50 loc) · 1.36 KB
/
sample.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Mover.js</title>
<link href="Content/Site.css" rel="stylesheet" />
</head>
<body>
<div class="grouped">
header
<hr />
<div ID="header"></div>
</div>
<div class="grouped">
footer
<hr />
<div ID="footer"></div>
</div>
<div class="grouped">
content1
<hr />
<div ID="content1"></div>
</div>
<div class="grouped">
content2
<hr />
<div ID="content2"></div>
</div>
<div class="grouped">
content3
<hr /><div ID="content3"></div>
</div>
<div class="grouped">
content4
<hr /> <div ID="content4"></div>
</div>
<div class="grouped">
content5
<hr /><div ID="content5"></div>
</div>
<div class="grouped">
content6
<hr /> <div ID="content6"></div>
</div>
<div data-move-1024="content3" data-move-786="header" data-move-480="content5" data-move-0="content1" class="to-move">Hi</div>
<div data-move-1024="content4" data-move-786="footer" data-move-480="content6" data-move-0="content2" class="to-move">Bye</div>
<script src="Scripts/jquery-1.10.2.min.js"></script>
<script src="Scripts/enquire.min.js"></script>
<script src="Scripts/mover.js"></script>
</body>
</html>