Is it possible to resize an Adobe Edge animation?

前端 未结 6 825
旧时难觅i
旧时难觅i 2020-12-20 04:26

I\'m trying to have an Edge animation resize based on screen resolution. I\'ve made a high-res one for 1080p and higher-res screens, but since the project is reasonably comp

6条回答
  •  梦毁少年i
    2020-12-20 04:51

    There is also this now which helps scale based on a parent bScaleToParent:

        AdobeEdge.loadComposition('MyComp', 'EDGE-985368975', {
              scaleToFit: "both",
              centerStage: "horizontal",
              minW: "0",
              maxW: "undefined",
              width: "1540px",
              height: "3004px",
              bScaleToParent: true
      }, {dom: [ ]}, {dom: [ ]});
    

    This was helpful: https://forums.adobe.com/message/6939673#6939673

提交回复
热议问题