-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathkeyframes.html
130 lines (111 loc) · 2.02 KB
/
keyframes.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
121
122
123
124
125
126
127
128
129
130
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Test: Keyframe</title>
<style>
.square{
position: relative;
display: inline-block;
left: 0;
width: auto;
height: auto;
vertical-align: text-bottom;
background-color: #000;
color: #fff;
padding: 20px;
margin-bottom: 5px;
}
</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>
<div id="square_4" class="square">4</div><br>
<script type="text/javascript" src="../fat.js"></script>
<script>
Fat.animate("#square_1", {
"25%": { translateX: "+=200px" },
"50%": { translateY: "+=200px" },
"75%": { translateX: "-=200px" },
"100%": { translateY: "-=200px" }
},{
duration: 2000 * 4,
loop: -1
});
// -----------------------------------------
Fat.animate("#square_2", {
"25%": { left: "+=200px" },
"50%": { top: "+=200px" },
"75%": { left: "*=0" },
"100%": { top: "*=0" }
},{
duration: 2000 * 4,
loop: -1
});
// -----------------------------------------
Fat.animate("#square_3", {
"25%": {
left: {
from: 0,
to: 200,
duration: 2000
}
},
"50%": {
top: {
from: 0,
to: 200,
duration: 2000
}
},
"75%": {
left: {
to: 0,
duration: 2000
}
},
"100%": {
top: {
to: 0,
duration: 2000
}
}
},{
duration: 2000 * 4,
loop: -1
});
// -----------------------------------------
(function loop(){
Fat.animate("#square_4", {
left: "200px"
},{
duration: 2000,
callback: function(){
Fat.animate(this, {
top: "200px"
},{
duration: 2000,
callback: function(){
Fat.animate(this, {
left: 0
},{
duration: 2000,
callback: function(){
Fat.animate(this, {
top: 0
},{
duration: 2000,
callback: loop
});
}
});
}
});
}
});
})();
</script>
</body>
</html>