Adobe Edge Animate Stage不仅显示Firefox

时间:2015-07-03 16:34:16

标签: jquery-animate adobe adobe-edge

我有一个我在Adobe Edge Animate中开始的项目,虽然我从那时起手工编辑了js dom。 CSS3动画和javascript很重要。该代码目前存在于一个代码版本的devbox中,并且所有系统都可以在Chrome,Safari甚至IE10 +中完美运行,但Firefox根本不会显示该阶段。

更新的DEV网址:

您可以查看新的开发环境here

我为MacOS 10.10.3安装了Firefox 39.0

在Firefox中查看我的控制台日志时,我看到很多css解析值错误,这引出了我:Warning: Error in parsing value for 'display'. Declaration dropped. Line: 0

我已经使用在SO帖子中链接的W3C CSS验证工具解决了所有CSS错误(除了针对旧版本Firefox的那些),但我仍然看到我的Firefox控制台日志中的其他文件解析错误:

The character encoding of a framed document was not declared. The document may appear different if viewed without the document framing it.
Error in parsing value for 'left'.  Declaration dropped.
Error in parsing value for 'top'.  Declaration dropped.

框架文档编码错误是指Adobe Edge为其所有项目创建的两个.js文件,这些文件以_edge.js和_edgeActions.js结尾,并且这些文件包含在以下脚本中:

    <script>
   AdobeEdge.loadComposition('dambala-stage', 'EDGE-1396008327', {
    scaleToFit: "none",
    centerStage: "horizontal",
    minW: "0px",
    maxW: "undefined",
    width: "1280px",
    height: "500px"
}, {dom: [ ]}, {dom: [ ]});
</script>

功能&#34; loadComposition&#34;从上面的脚本定义在包含的js文件中,该文件被调用,并且定义了编码,如下所示:

<script type="text/javascript" charset="utf-8" src="edge_includes/edge.6.0.0.min.js"></script>

这也是所有Adobe Edge Animate项目的标准,所以我不知道如何为其他两个js文件指定编码,或者这甚至可能都是问题呢?

至于剩下的最后两个解析错误,&#39; top&#39;并且&#39; left&#39;那些是指我的main,dambala-stage.php文件,虽然控制台日志中没有给出行号,所以我不知道指的是什么(或在哪里)。 / p>

有没有其他人遇到过这个问题,因为我知道我在所有浏览器中都没有项目工作,包括IE,但不是Firefox?

非常感谢任何和所有帮助。

0 个答案:

没有答案