-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathconcurrency.html
120 lines (107 loc) · 1.74 KB
/
concurrency.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Test: Concurrency</title>
<style>
.square{
position: relative;
display: inline-block;
top:0;
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>
<script type="text/javascript" src="../fat.js"></script>
<script>
Fat.animate("#square_1", {
left: "200px"
},{
duration: 2000,
callback: function(){
Fat.animate(this, {
left: 0
},{
delay: 2000,
duration: 2000
})
}
});
Fat.animate("#square_1", {
top: "200px"
},{
delay: 1000,
duration: 2000,
callback: function(){
Fat.animate(this, {
top: 400
},{
duration: 2000
})
}
});
// -------------------------------------
Fat.animate("#square_2", {
translateX: "200px"
},{
duration: 2000,
callback: function(){
Fat.animate(this, {
translateX: 0
},{
delay: 2000,
duration: 2000
})
}
});
Fat.animate("#square_2", {
translateY: "200px"
},{
delay: 1000,
duration: 2000,
callback: function(){
Fat.animate(this, {
translateY: 400
},{
duration: 2000
})
}
});
// -------------------------------------
Fat.create().animate("#square_3", [{
left: {
to: "200px",
duration: 2000
}
},{
left: {
to: 0,
delay: 2000,
duration: 2000
}
}]);
Fat.create().animate("#square_3", [{
top: {
to: "200px",
delay: 1000,
duration: 2000
}
},{
top: {
to: 400,
duration: 2000
}
}]);
</script>
</body>
</html>