我正在尝试在Adobe边缘编写代码。
目前,我可以获取鼠标位置并使用x值控制时间轴。
mousemove:
this.onMove(posX, posY);
compositionready:
this.onMove=function(posX, posY){
timelinecontrol = Number(posX)*80;
console.log(timelinecontrol);
sym.stop(timelinecontrol);
}
如何从页面顶部获取滚动距离并使用它而不是posX?
答案 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);
}