Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F947264
fx.html
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Subscribers
None
fx.html
View Options
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<
html
>
<
head
>
<
title
>
Testing dojo.behavior
</
title
>
<
script
type
=
"text/javascript"
src
=
"../dojo.js"
djConfig
=
"isDebug: true"
></
script
>
<
script
type
=
"text/javascript"
>
dojo
.
require
(
"doh.runner"
);
dojo
.
require
(
"dojo.fx"
);
dojo
.
addOnLoad
(
function
(){
doh
.
register
(
"t"
,
[
function
slideTo
(
t
){
var
s
=
dojo
.
fx
.
slideTo
({
node
:
"foo"
,
duration
:
500
,
left
:
500
,
top
:
50
}).
play
();
var
d
=
new
doh
.
Deferred
();
dojo
.
connect
(
s
,
"onEnd"
,
function
(){
doh
.
is
(
dojo
.
style
(
"foo"
,
"left"
),
500
);
doh
.
is
(
dojo
.
style
(
"foo"
,
"top"
),
50
);
with
(
dojo
.
byId
(
"foo"
).
style
){
position
=
left
=
top
=
""
;
}
d
.
callback
(
true
);
});
s
.
play
();
return
d
;
},
function
wipeOut
(
t
){
dojo
.
byId
(
"foo"
).
style
.
height
=
""
;
var
d
=
new
doh
.
Deferred
();
var
s
=
dojo
.
fx
.
wipeOut
({
node
:
"foo"
,
duration
:
500
,
onEnd
:
function
(){
doh
.
t
(
dojo
.
style
(
"foo"
,
"height"
)
<
5
);
d
.
callback
(
true
);
}
}).
play
();
return
d
;
},
function
wipeIn
(
t
){
dojo
.
byId
(
"foo"
).
style
.
height
=
"0px"
;
var
d
=
new
doh
.
Deferred
();
dojo
.
fx
.
wipeIn
({
node
:
"foo"
,
duration
:
500
,
onEnd
:
function
(){
doh
.
t
(
dojo
.
style
(
"foo"
,
"height"
)
!=
0
);
d
.
callback
(
true
);
}
}).
play
();
return
d
;
},
function
Toggler
(){
var
d
=
new
doh
.
Deferred
();
var
t
=
new
dojo
.
fx
.
Toggler
({
node
:
"foo"
,
hideDuration
:
1000
,
hideFunc
:
dojo
.
fx
.
wipeOut
,
showFunc
:
dojo
.
fx
.
wipeIn
});
t
.
hide
();
setTimeout
(
function
(){
var
sa
=
t
.
show
();
dojo
.
connect
(
sa
,
"onEnd"
,
dojo
.
hitch
(
d
,
"callback"
,
true
));
},
500
);
return
d
;
}
/*,
function chain(t){
doh.t(false);
},
function combine(t){
doh.t(false);
}
*/
]
);
doh
.
run
();
});
</
script
>
<
style
type
=
"text/css"
>
@
import
"../resources/dojo.css"
;
body
{
text-shadow
:
0
px
0
px
;
margin
:
1
em
;
background-color
:
#DEDEDE
;
}
.
box
{
color
:
#292929
;
/* color: #424242; */
/* text-align: left; */
width
:
300
px
;
border
:
1
px
solid
#BABABA
;
background-color
:
white
;
padding-left
:
10
px
;
padding-right
:
10
px
;
margin-left
:
10
px
;
margin-bottom
:
1
em
;
-o-
border-radius
:
10
px
;
-moz-
border-radius
:
12
px
;
-webkit-
border-radius
:
10
px
;
-webkit-
box-shadow
:
0
px
3
px
7
px
#adadad
;
/* -opera-border-radius: 10px; */
border-radius
:
10
px
;
-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
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
>
</
body
>
</
html
>
File Metadata
Details
Attached
Mime Type
text/html
Expires
Sat, Apr 26, 11:04 (1 d, 14 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
24482
Default Alt Text
fx.html (4 KB)
Attached To
rZED Zed
Event Timeline
Log In to Comment