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