我正在尝试在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?
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);
}