是否可以使用单个HTML文件运行Adobe Edge Animate项目?

时间:2015-08-26 11:23:14

标签: javascript html include jquery-animate adobe-edge

我的HTML文件如下所示:

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
    <title>Unbenannt</title>
<!--Adobe Edge Runtime-->
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <script type="text/javascript" charset="utf-8" src="http://animate.adobe.com/runtime/5.0.0/edge.5.0.0.min.js"></script>
    <style>
        .edgeLoad-EDGE-720796712 { visibility:hidden; }
    </style>
<script>
   AdobeEdge.loadComposition('OrgAnimation', 'EDGE-720796712', {
    scaleToFit: "none",
    centerStage: "none",
    minW: "0",
    maxW: "undefined",
    width: "1250px",
    height: "800px"
}, {"dom":{}}, {"dom":{}});

</script>
<!--Adobe Edge Runtime End-->

</head>
<body style="margin:0;padding:0;">
    <div id="Stage" class="EDGE-720796712">
    </div>
</body>
</html>

然后我将JS-File称为&#34; OrgAnimation_edge.js&#34;所以我假设它在

加载
  

Adob​​eEdge.loadComposition(&#39; OrgAnimation&#39; ...

有效 -

但是现在我的问题:是否有可能以某种方式将来自OrgAnimation_edge.js的js代码放入HTML文件并使其仅使用该单个文件?我无法理解它出:(

0 个答案:

没有答案