Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F390854
NodeList-fx.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
NodeList-fx.js
View Options
/*
Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
if
(
!
dojo
.
_hasResource
[
"dojo.NodeList-fx"
]){
dojo
.
_hasResource
[
"dojo.NodeList-fx"
]
=
true
;
dojo
.
provide
(
"dojo.NodeList-fx"
);
dojo
.
require
(
"dojo.fx"
);
dojo
.
extend
(
dojo
.
NodeList
,{
_anim
:
function
(
_1
,
_2
,
_3
){
_3
=
_3
||
{};
return
dojo
.
fx
.
combine
(
this
.
map
(
function
(
_4
){
var
_5
=
{
node
:
_4
};
dojo
.
mixin
(
_5
,
_3
);
return
_1
[
_2
](
_5
);
}));
},
wipeIn
:
function
(
_6
){
return
this
.
_anim
(
dojo
.
fx
,
"wipeIn"
,
_6
);
},
wipeOut
:
function
(
_7
){
return
this
.
_anim
(
dojo
.
fx
,
"wipeOut"
,
_7
);
},
slideTo
:
function
(
_8
){
return
this
.
_anim
(
dojo
.
fx
,
"slideTo"
,
_8
);
},
fadeIn
:
function
(
_9
){
return
this
.
_anim
(
dojo
,
"fadeIn"
,
_9
);
},
fadeOut
:
function
(
_a
){
return
this
.
_anim
(
dojo
,
"fadeOut"
,
_a
);
},
animateProperty
:
function
(
_b
){
return
this
.
_anim
(
dojo
,
"animateProperty"
,
_b
);
},
anim
:
function
(
_c
,
_d
,
_e
,
_f
,
_10
){
var
_11
=
dojo
.
fx
.
combine
(
this
.
map
(
function
(
_12
){
return
dojo
.
animateProperty
({
node
:
_12
,
properties
:
_c
,
duration
:
_d
||
350
,
easing
:
_e
});
}));
if
(
_f
){
dojo
.
connect
(
_11
,
"onEnd"
,
_f
);
}
return
_11
.
play
(
_10
||
0
);
}});
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Feb 22, 15:28 (22 h, 27 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
24037
Default Alt Text
NodeList-fx.js (1 KB)
Attached To
rZED Zed
Event Timeline
Log In to Comment