Insert an Adobe edge animation into the Worder Zerif theme

0

This is very specific, I do not know if you can help me. This theme has several sessions, which are nothing more than PHP pages that are imported. I created a new page called "animation" and I imported the theme with the code:

get_template_part( 'sections/animacao' );

That's normal. But I want to put an animation that I did on Edge Animate CC. The edge generates HTML5:

<!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>Untitled</title>
<!--Adobe Edge Runtime-->
    <script type="text/javascript" charset="utf-8"     src="edge_includes/edge.6.0.0.min.js"></script>
    <style>
        .edgeLoad-EDGE-709063 { visibility:hidden; }
    </style>
<script>
   AdobeEdge.loadComposition('teste', 'EDGE-709063', {
    scaleToFit: "none",
    centerStage: "none",
    minW: "0px",
    maxW: "undefined",
    width: "550px",
    height: "400px"
}, {dom: [ ]}, {dom: [ ]});
</script>
<!--Adobe Edge Runtime End-->

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

I put the Javascript files that accompany the animation HTML in the "Sections" and "root" folder, but nothing is displayed when the site is running, there is only a blank space where it was to run the animation. If I squeeze the animation on a separate page it works normal.

    
asked by anonymous 25.05.2016 / 15:47

0 answers