Adobe edge - 获取滚动位置值

时间:2013-06-11 11:02:08

标签: jquery jquery-animate parallax adobe-edge

我正在尝试在Adobe边缘编写代码。

目前,我可以获取鼠标位置并使用x值控制时间轴。

mousemove:
this.onMove(posX, posY);

compositionready:
this.onMove=function(posX, posY){
timelinecontrol = Number(posX)*80;
console.log(timelinecontrol);
sym.stop(timelinecontrol);
}

如何从页面顶部获取滚动距离并使用它而不是posX?

1 个答案:

答案 0 :(得分:0)

this.onMove(e.pageX, e.pageY);

// insert code to be run when the composition is fully loaded here
this.onMove=function(posX, posY) {
    timelinecontrol = Number(posX)*2;
    console.log(timelinecontrol);
    sym.stop(timelinecontrol);


    sym.$("lblX").html("X:"+posX);
    sym.$("lblY").html("Y:"+posY);

}