-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathdelay.html
38 lines (38 loc) · 1.08 KB
/
delay.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
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Test: Delay</title>
<style>
.square{
position: relative;
display: inline-block;
left:0;
width: auto;
height: auto;
vertical-align: text-bottom;
color: #fff;
background-color: #000;
padding: 20px;
}
</style>
</head>
<body>
<div id="square_1" class="square">1</div><br>
<div id="square_2" class="square">2</div><br>
<div id="square_3" class="square">3</div><br>
<br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br>
<div id="square_4" class="square">4</div><br>
<script type="text/javascript" src="../fat.js"></script>
<script>
Fat.animate("#square_1", { left: "50%" },{ delay: 0 })
.animate("#square_2", { left: "50%" },{ delay: 400 })
.animate("#square_3", { left: "50%" },{ delay: 800 })
.animate("#square_4", { left: "50%" },{ delay: "scroll" });
</script>
</body>
</html>