0

Adobe Edge で何かをコーディングしようとしています。

現在、マウスの位置を取得し、x 値でタイムラインを制御できます。

mousemove:
this.onMove(posX, posY);

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

ページの上部からのスクロール距離を取得して、posX の代わりに使用するにはどうすればよいですか?

4

1 に答える 1

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);

}
于 2013-07-03T15:17:48.393 に答える