fx.html
13.5 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Testing fx</title>
<script type="text/javascript" src="../dojo.js" data-dojo-config="isDebug:true"></script>
<script type="text/javascript">
require([
"doh",
"dojo/_base/array", "dojo/aspect", "dojo/dom", "dojo/dom-style",
"dojo/_base/fx", "dojo/fx", "dojo/fx/easing", "dojo/fx/Toggler", "dojo/_base/lang",
"dojo/domReady!"
], function(doh, array, aspect, dom, domStyle, baseFx, fx, easing, Toggler, lang){
doh.register("t",
[
function slideTo(t){
var s = fx.slideTo({
node: "foo",
duration: 500,
left: 500,
top: 50
}).play();
var d = new doh.Deferred();
aspect.after(s, "onEnd", function(){
doh.is(domStyle.get("foo", "left"), 500);
doh.is(domStyle.get("foo", "top"), 50);
with(dom.byId("foo").style){
position = left = top = "";
}
d.callback(true);
}, true);
s.play();
return d;
},
function wipeOut(t){
dom.byId("foo").style.height = "";
var d = new doh.Deferred();
var s = fx.wipeOut({
node: "foo",
onEnd: function(){
doh.t(domStyle.get("foo", "height") < 5);
d.callback(true);
}
}).play();
return d;
},
function wipeIn(t){
var d = new doh.Deferred();
setTimeout(function(){
fx.wipeIn({
node: "foo",
onEnd: function(){
console.debug(domStyle.get("foo", "height"));
doh.t(domStyle.get("foo", "height") > 10);
d.callback(true);
}
}).play();
}, 10);
return d;
},
{
name: "chain",
timeout: 1500,
runTest: function(t){
dom.byId("foo").style.height = "0px";
var d = new doh.Deferred();
var w = fx.wipeIn({
node: "foo",
duration: 500
});
var f = baseFx.fadeOut({
node: "foo",
duration: 500
});
var a = fx.chain([w,f]);
aspect.after(a, "onEnd", function(){
doh.t((w.status()=="stopped"&&f.status()=="stopped"));
d.callback(true);
});
a.play();
return d;
}
},
{
name: "combine",
timeout: 1500,
runTest: function(t){
dom.byId("foo").style.height = "0px";
var d = new doh.Deferred();
var w = fx.wipeIn({
node: "foo",
duration: 500
});
var f = baseFx.fadeIn({
node: "foo",
duration: 1000
});
var a = fx.combine([w,f]);
aspect.after(a, "onEnd", function(){
doh.t((w.status()=="stopped"&&f.status()=="stopped"));
d.callback(true);
}, true);
a.play();
return d;
}
},
{
name:"combineBeforeBegin",
timeout:1500,
runTest: function(t){
var d = new doh.Deferred();
var a = baseFx.fadeOut({ node:"foo2", duration:400 });
var b = baseFx.fadeIn({ node:"foo2", duration:400 });
var chain = fx.combine([a,b]);
aspect.after(chain,"beforeBegin",lang.hitch(d,"callback",true), true);
chain.play();
return d;
}
},
{
name:"delayTest",
timeout:2000,
runTest:function(t){
var d = new doh.Deferred();
var delay = 100;
var _anims = [];
var nodes = ["a","b","c","d"];
array.forEach(nodes,function(n){
_anims.push(baseFx.fadeOut({ node:n, duration:100, delay: delay += 100 }));
});
var a = fx.combine(_anims);
var timer = (new Date()).getTime();
aspect.after(a,"onEnd",function(){
console.warn("delayTest running time:", (new Date()).getTime() - timer, "ms, expected:", a.duration, "ms");
d.callback(true);
}, true);
a.play();
return d;
}
},
{
name:"delayTestChain",
timeout:2200,
runTest:function(t){
var d = new doh.Deferred();
var delay = 100;
var _anims = [];
var nodes = ["a","b","c","d"];
array.forEach(nodes,function(n){
_anims.push(baseFx.fadeIn({ node:n, duration:100, delay: delay += 100 }));
});
var a = fx.chain(_anims);
var timer = (new Date()).getTime();
aspect.after(a,"onEnd",function(){
console.warn("delayTestChain running time:", (new Date()).getTime() - timer, "ms, expected:", a.duration, "ms");
d.callback(true);
}, true);
a.play();
return d;
}
},
{
name:"combineOnEnd",
timeout:1500,
runTest: function(t){
var d = new doh.Deferred();
var a = baseFx.fadeOut({ node:"foo2", duration:400 });
var b = baseFx.fadeIn({ node:"foo2", duration:400 });
var combine = fx.combine([a,b]);
aspect.after(combine,"onEnd",lang.hitch(d,"callback",true), true);
combine.play();
return d;
}
},
{
name:"combineOnPlay",
timeout:1500,
runTest: function(t){
var d = new doh.Deferred();
var a = baseFx.fadeOut({ node:"foo2", duration:400 });
var b = baseFx.fadeIn({ node:"foo2", duration:400 });
var combine = fx.combine([a,b]);
aspect.after(combine,"onPlay",lang.hitch(d,"callback",true), true);
combine.play();
return d;
}
},
{
name:"chainOnEnd",
timeout:1500,
runTest: function(t){
var d = new doh.Deferred();
var a = baseFx.fadeOut({ node:"foo2", duration:400 });
var b = baseFx.fadeIn({ node:"foo2", duration:400 });
var chain = fx.chain([a,b]);
aspect.after(chain,"onEnd",lang.hitch(d,"callback",true), true);
chain.play();
return d;
}
},
{
name:"chainOnPlay",
timeout:1500,
runTest: function(t){
var d = new doh.Deferred();
var a = baseFx.fadeOut({ node:"foo2", duration:200 });
var b = baseFx.fadeIn({ node:"foo2", duration:200 });
var chain = fx.chain([a,b]);
aspect.after(chain,"onPlay",lang.hitch(d,"callback",true), true);
chain.play();
return d;
}
},
{
name:"stopDelay",
timeout:1500,
runTest: function(t){
var d = new doh.Deferred();
var a = baseFx.fadeOut({ node: "foo2", delay:400 });
aspect.after(a, "onPlay", lang.hitch(d, "errback", true), true);
a.play();
a.stop();
setTimeout(function(){
d.callback(true);
}, 500);
return d;
}
},
{
name:"stopDelayPassed",
timeout:1500,
runTest: function(t){
var d = new doh.Deferred();
var b = baseFx.fadeIn({ node: "foo2" });
aspect.after(b, "onPlay", lang.hitch(d, "errback", true), true);
b.play(400);
b.stop();
setTimeout(function(){
d.callback(true);
}, 600);
return d;
}
},
function testToggler(){
var d = new doh.Deferred();
var t = new Toggler({
node: "foo",
hideDuration: 100,
hideFunc: fx.wipeOut,
showFunc: fx.wipeIn
});
t.hide();
setTimeout(function(){
var sa = t.show();
aspect.after(sa, "onEnd", lang.hitch(d, "callback", true), true);
}, 50);
return d;
},
function combineChain(t){
// test combining two chained() animations
var anim1 = fx.chain([
baseFx.fadeIn({ node:"chained" }),
baseFx.fadeOut({ node:"chained" })
]);
var anim2 = fx.chain([
baseFx.fadeOut({ node:"chainedtoo" }),
baseFx.fadeIn({ node:"chainedtoo" })
]);
var anim = fx.combine([anim1, anim2]);
var d = new doh.Deferred();
aspect.after(anim, "onEnd", lang.hitch(d, "callback", true), true);
anim.play();
},
function chainCombine(t){
// test chaining two combined() animations
var anim1 = fx.combine([
baseFx.fadeIn({ node:"chained" }),
baseFx.fadeOut({ node:"chainedtoo" })
]);
var anim2 = fx.combine([
baseFx.fadeOut({ node:"chained" }),
baseFx.fadeIn({ node:"chainedtoo" })
]);
var anim = fx.chain([anim1, anim2]);
var d = new doh.Deferred();
aspect.after(anim, "onEnd", lang.hitch(d, "callback", true), true);
anim.play();
},
function easingNames(t){
for(var i in easing){
t.assertTrue(lang.isFunction(easing[i]));
}
},
function easingReturns(t){
for(var i in easing){
t.assertTrue(!isNaN(easing[i](0.5)));
}
},
{
name:"onendStatus-chain",
timeout:1500,
runTest: function(t){
var d = new doh.Deferred;
var a1 = baseFx.fadeOut({ node:"a1" });
var a2 = baseFx.fadeOut({ node:"a2" });
var anim = fx.chain([a1, a2]);
aspect.after(anim, "onEnd", function(){
t.is("stopped", a1.status());
t.is("stopped", a2.status());
t.is("stopped", anim.status());
d.callback(true);
}, true);
anim.play();
return d;
}
},
{
name:"onendStatus-combine",
timeout:1500,
runTest: function(t){
var d = new doh.Deferred;
var a1 = baseFx.fadeOut({ node:"a1" });
var a2 = baseFx.fadeOut({ node:"a2" });
var anim = fx.combine([a1, a2]);
aspect.after(anim, "onEnd", function(){
t.is("stopped", a1.status());
t.is("stopped", a2.status());
setTimeout(function(){
t.is("stopped", anim.status());
d.callback(true);
}, 10);
}, true);
anim.play();
return d;
}
},
{
name: "wipeOut onStop",
timeout: 1500,
runTest: function(t){
dom.byId("foo").style.height = "auto";
dom.byId("foo").style.overflow = "visible";
var d = new doh.Deferred();
var w = fx.wipeOut({
node: "foo",
duration: 1000
});
aspect.after(w, "onStop", function(){
doh.t(dom.byId("foo").style.overflow == "visible");
d.callback(true);
}, true);
w.play();
setTimeout(function(){ w.stop(); }, 100);
return d;
}
},
{
name: "wipeIn onStop",
timeout: 1500,
runTest: function(t){
dom.byId("foo").style.height = "0px";
dom.byId("foo").style.overflow = "visible";
var d = new doh.Deferred();
var w = fx.wipeIn({
node: "foo",
duration: 1000
});
aspect.after(w, "onStop", function(){
doh.t(dom.byId("foo").style.overflow == "visible");
d.callback(true);
}, true);
w.play();
setTimeout(function(){ w.stop(); }, 100);
return d;
}
}
]
);
doh.run();
});
</script>
<style type="text/css">
@import "../resources/dojo.css";
body {
text-shadow: 0px 0px;
margin: 1em;
background-color: #DEDEDE;
}
.box {
color: #292929;
/* color: #424242; */
/* text-align: left; */
width: 300px;
border: 1px solid #BABABA;
background-color: white;
padding-left: 10px;
padding-right: 10px;
margin-left: 10px;
margin-bottom: 1em;
-o-border-radius: 10px;
-moz-border-radius: 12px;
-webkit-border-radius: 10px;
-webkit-box-shadow: 0px 3px 7px #adadad;
/* -opera-border-radius: 10px; */
border-radius: 10px;
-moz-box-sizing: border-box;
-opera-sizing: border-box;
-webkit-box-sizing: border-box;
-khtml-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
/* position: absolute; */
}
</style>
</head>
<body>
<div class="box" id="a">a</div><div class="box" id="b">b</div>
<div class="box" id="c">c</div><div class="box" id="d">d</div>
<div id="foo" class="box">
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean
semper sagittis velit. Cras in mi. Duis porta mauris ut ligula.
Proin porta rutrum lacus. Etiam consequat scelerisque quam. Nulla
facilisi. Maecenas luctus venenatis nulla. In sit amet dui non mi
semper iaculis. Sed molestie tortor at ipsum. Morbi dictum rutrum
magna. Sed vitae risus.
</p>
<p>
Aliquam vitae enim. Duis scelerisque metus auctor est venenatis
imperdiet. Fusce dignissim porta augue. Nulla vestibulum. Integer
lorem nunc, ullamcorper a, commodo ac, malesuada sed, dolor. Aenean
id mi in massa bibendum suscipit. Integer eros. Nullam suscipit
mauris. In pellentesque. Mauris ipsum est, pharetra semper,
pharetra in, viverra quis, tellus. Etiam purus. Quisque egestas,
tortor ac cursus lacinia, felis leo adipiscing nisi, et rhoncus
elit dolor eget eros. Fusce ut quam. Suspendisse eleifend leo vitae
ligula. Nulla facilisi. Nulla rutrum, erat vitae lacinia dictum,
pede purus imperdiet lacus, ut semper velit ante id metus. Praesent
massa dolor, porttitor sed, pulvinar in, consequat ut, leo. Nullam
nec est. Aenean id risus blandit tortor pharetra congue.
Suspendisse pulvinar.
</p>
</div>
<div id="foo2">foo2</div>
<div>
<p id="chained">foo</p><p id="chainedtoo">bar</p>
</div>
<p id="a1">p</p><p id="a2">p</p>
</body>
</html>