-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcustom.html
146 lines (114 loc) · 2.46 KB
/
custom.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Test: Custom</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;
}
</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>
<div id="square_5" class="square">5</div><br>
<div id="square_6" class="square">6</div><br>
<div id="square_7" class="square">7</div><br>
<script type="text/javascript" src="../fat.js"></script>
<script>
// Reference (not custom)
Fat.animate("#square_1", {
left: "50%"
},{
duration: 2000,
ease: "cubicInOut"
});
// Custom Property
Fat.animate("#square_2", {
custom: "50%"
},{
duration: 2000,
ease: "cubicInOut",
step: function(progress, value){
this.style.left = value;
}
});
// Custom Property & Unit
Fat.animate("#square_3", {
custom: 50
},{
duration: 2000,
ease: "cubicInOut",
step: function(progress, value){
this.style.left = value + "%";
}
});
// Custom Property & Easing
function cubicInOut(x) {
return ((x *= 2) <= 1 ? x * x * x : (x -= 2) * x * x + 2) / 2;
}
Fat.animate("#square_4", {
custom: true
},{
duration: 2000,
step: function(progress){
this.style.left = (cubicInOut(progress) * 50) + "%";
}
});
// Custom First Parameter
Fat.animate({
style: document.getElementById("square_5").style
},{
custom: 50
},{
duration: 2000,
ease: "cubicInOut",
step: function(progress, value){
// "this" refers to the custom object/function
this.style.left = value + "%";
}
});
// Custom Logic
var handler = {
unit: "%",
style: document.getElementById("square_6").style,
set: function(property, value){
this.style[property] = value + this.unit;
}
};
Fat.animate(handler, { custom: 50 },{
duration: 2000,
ease: "cubicInOut",
step: function(progress, value){
// "this" refers to the handler
this.set("left", value);
}
});
// Custom Logic
var custom = {
value: 0,
property: "left",
obj: document.getElementById("square_7")
};
function draw(){
this.obj.style[this.property] = this.value;
}
Fat.animate(custom, { value: "50%" },{
duration: 2000,
ease: "cubicInOut",
step: draw
});
</script>
</body>
</html>