Adobe Edge Firefox iframe错误

时间:2015-12-15 20:58:52

标签: javascript jquery html adobe-edge

我使用Adobe Edge 6动画。 我正在尝试将动画包含在iframe中。该代码适用于ChromeIE 10。但在Firefox上,我在Adobe Edge库TypeError: C.getComputedStyle(...) is null -> edge.6.0.0.min.js Line-77上收到javascript错误。

如果我在Firefox 43上打开动画页面它运行良好,我只会在将动画包含在iframe中时收到错误。

动画页面:

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
    <title>Untitled</title>
    <!--Adobe Edge Runtime-->
    <script type="text/javascript" charset="utf-8" src="/Scripts/edge.6.0.0.min.js"></script>
    <style>
        .edgeLoad-EDGE-1689000111 {
            visibility: hidden;
        }

        div {
            position: absolute !important;
        }
    </style>
    <script>
        AdobeEdge.loadComposition('Test', 'EDGE-1689000111', {
            scaleToFit: "both",
            centerStage: "none",
            minW: "0",
            maxW: "undefined",
            width: "870px",
            height: "350px"
        }, { dom: [] }, { dom: [] });
    </script>
    <!--Adobe Edge Runtime End-->
</head>
<body style="margin:0;padding:0">
    <div id=" stage" class="EDGE-1689000111">
    </div>
</body>
</html>

iframe使用动画页面:

<iframe class="embed-responsive-item" frameborder="0" src="PATH"></iframe>

1 个答案:

答案 0 :(得分:0)

我几天前遇到过同样的问题。 可能的原因之一是iframe(或其父节点之一)上的“display:none”规则。即使“显示”规则稍后设置为“阻止”,这也可能导致错误。

以下是bugzilla的相关问题: https://bugzilla.mozilla.org/show_bug.cgi?id=548397

你可以检查iframe(或它的父母)在DOM首次出现时是否有“display:none”吗?

现在我们要设置“opacity:0”或“visibility:hidden”而不是“display:none”。