当使用ng-include时,在flash游戏图形上尾巴,没有图形上没有尾巴

时间:2014-05-16 20:15:58

标签: javascript node.js angularjs flash express

我刚刚使用http://ngmodules.org/modules/angularjs-media在我的网站上嵌入了一个flash游戏(angular / node / express):

<div class="container hero-unit">
  <flash width="400" height="300" src="files/avoider.swf"></flash>
</div>

问题是,我有一个导航栏,我希望将ng-include包含在同一部分中,如下所示:

<div ng-include="'partials/navbar'"></div>

<div class="container hero-unit">
  <flash width="400" height="300" src="files/avoider.swf"></flash>
</div>

然而,当我这样做时,不是图形在Flash游戏中正常移动,图像有一个不断重复的尾部。意思是,当图像移动时 - 图像的副本留在最后一个位置 - 所以它看起来像一条很长的尾巴。我知道ng-include导致了这个问题,但我不知道为什么......任何帮助都会非常感激 - 谢谢。

更新

尾部只发生在chrome中,它在firefox中正常工作。

1 个答案:

答案 0 :(得分:0)

此行造成了问题:

'<param name="wmode" value="transparent" />'

angularjs-media指令文件中创建了<object>标记的html - chrome不喜欢它。它使闪光窗口透明。