Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F948172
fx.html
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
5 KB
Subscribers
None
fx.html
View Options
<
html
>
<
head
>
<
title
>
testing Core FX
</
title
>
<
style
type
=
"text/css"
>
@
import
"../../resources/dojo.css"
;
</
style
>
<
script
type
=
"text/javascript"
src
=
"../../dojo.js"
djConfig
=
"isDebug: true"
></
script
>
<
script
type
=
"text/javascript"
src
=
"../../_base/fx.js"
></
script
>
<
script
type
=
"text/javascript"
>
var
duration
=
1000
;
dojo
.
require
(
"doh.runner"
);
dojo
.
addOnLoad
(
function
(){
doh
.
register
(
"t"
,
[
{
name
:
"fadeOut"
,
timeout
:
1500
,
runTest
:
function
(
t
){
var
opacity
=
dojo
.
style
(
'foo'
,
'opacity'
);
t
.
is
(
1
,
opacity
);
var
anim
=
dojo
.
fadeOut
({
node
:
'foo'
,
duration
:
duration
});
var
d
=
new
doh
.
Deferred
();
dojo
.
connect
(
anim
,
"onEnd"
,
null
,
function
(){
var
opacity
=
dojo
.
style
(
'foo'
,
'opacity'
);
// console.debug(anim._start);
var
elapsed
=
(
new
Date
())
-
anim
.
_start
;
t
.
is
(
0
,
opacity
);
t
.
assertTrue
(
elapsed
>=
duration
);
d
.
callback
(
true
);
});
anim
.
_start
=
new
Date
();
anim
.
play
();
return
d
;
}
},
{
name
:
"fadeIn"
,
timeout
:
1500
,
runTest
:
function
(
t
){
var
opacity
=
dojo
.
style
(
'foo'
,
'opacity'
);
t
.
is
(
0
,
opacity
);
var
anim
=
dojo
.
fadeIn
({
node
:
'foo'
,
duration
:
duration
});
var
d
=
new
doh
.
Deferred
();
dojo
.
connect
(
anim
,
"onEnd"
,
null
,
function
(){
var
opacity
=
dojo
.
style
(
'foo'
,
'opacity'
);
// console.debug(anim._start);
var
elapsed
=
(
new
Date
())
-
anim
.
_start
;
t
.
is
(
1
,
opacity
);
t
.
assertTrue
(
elapsed
>=
duration
);
d
.
callback
(
true
);
});
anim
.
_start
=
new
Date
();
anim
.
play
();
return
d
;
}
},
{
name
:
"animateColor"
,
timeout
:
1500
,
runTest
:
function
(
t
){
var
d
=
new
doh
.
Deferred
();
var
anim
=
dojo
.
animateProperty
({
node
:
"foo"
,
duration
:
duration
,
properties
:
{
color
:
{
start
:
"black"
,
end
:
"white"
},
backgroundColor
:
{
start
:
"white"
,
end
:
"black"
}
}
});
dojo
.
connect
(
anim
,
"onEnd"
,
anim
,
function
(){
d
.
callback
(
true
);
});
anim
.
play
();
return
d
;
}
},
{
name
:
"animateColorBack"
,
timeout
:
1500
,
runTest
:
function
(
t
){
var
d
=
new
doh
.
Deferred
();
var
anim
=
dojo
.
animateProperty
({
node
:
"foo"
,
duration
:
duration
,
properties
:
{
color
:
{
end
:
"black"
},
backgroundColor
:
{
end
:
"#5d81b4"
},
letterSpacing
:
{
start
:
0
,
end
:
10
}
}
});
dojo
.
connect
(
anim
,
"onEnd"
,
anim
,
function
(){
d
.
callback
(
true
);
});
anim
.
play
();
return
d
;
}
},
{
name
:
"animateHeight"
,
timeout
:
1500
,
runTest
:
function
(
t
){
var
startHeight
=
dojo
.
marginBox
(
"foo"
).
h
;
var
endHeight
=
Math
.
round
(
startHeight
/
2
);
var
anim
=
dojo
.
animateProperty
({
node
:
"foo"
,
properties
:
{
height
:
{
end
:
endHeight
}
},
duration
:
duration
});
var
d
=
new
doh
.
Deferred
();
dojo
.
connect
(
anim
,
"onEnd"
,
anim
,
function
(){
var
elapsed
=
(
new
Date
().
valueOf
())
-
anim
.
_startTime
;
t
.
assertTrue
(
elapsed
>=
duration
);
var
height
=
dojo
.
marginBox
(
"foo"
).
h
;
t
.
is
(
height
,
endHeight
);
d
.
callback
(
true
);
});
anim
.
play
();
return
d
;
}
}
]
);
doh
.
run
();
});
</
script
>
<
style
type
=
"text/css"
>
body
{
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
;
-o-
border-radius
:
10
px
;
-moz-
border-radius
:
12
px
;
-webkit-
border-radius
:
10
px
;
/* -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
>
<
h1
>
testing Core FX
</
h1
>
<
form
name
=
"testForm"
>
<
input
type
=
"button"
onClick
=
"dojo.fadeOut({ node: 'foo', duration: 1000 }).play()"
value
=
"fade out"
></
input
>
<
input
type
=
"button"
onClick
=
"dojo.fadeIn({ node: 'foo', duration: 1000 }).play()"
value
=
"fade in"
></
input
>
</
form
>
<
div
id
=
"foo"
class
=
"box"
style
=
"float: left;"
>
<
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, 15:11 (3 h, 33 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
24395
Default Alt Text
fx.html (5 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment