Is there any library describing the ANIM functions in jdeAnimation.js for E1 page designing?
Is there any document library to describe the ANIM functions in jdeAnimation.js for E1 page designing?By example:
ANIM.Animations.sinSlideX.doFrame = function(obj, v0, vF, t)
{
obj.style.left = (obj.actualX = (v0 + ANIM.TimingFunctions.sinMot(t) * (vF - v0))) + 'px';
}
ANIM.Animations.sinSlideX.doEnd = function(obj, vF)
{
obj.style.left = vF + 'px';
}
Where could we find the document to describe all the anim functions?
Another question :
Is there any function in pages could connect the link of web site in E1 PAGES?
Is there any function in pages could connect the a media file?
Thank you very much.
ANIM.Animations.sinSlideX.doFrame = function(obj, v0, vF, t)
{
obj.style.left = (obj.actualX = (v0 + ANIM.TimingFunctions.sinMot(t) * (vF - v0))) + 'px';
}
ANIM.Animations.sinSlideX.doEnd = function(obj, vF)
{
obj.style.left = vF + 'px';
}
Where could we find the document to describe all the anim functions?
Another question :
Is there any function in pages could connect the link of web site in E1 PAGES?
Is there any function in pages could connect the a media file?
Thank you very much.
0