PlayN帆布对象不是在页面顶部(PlayN-canvas object not on top of

2019-10-16 16:32发布

我没有找到这个问题的解决方案:我想表明我playN游戏在一个html的iframe:

<iframe src="../playn-showcase-html/Showcase.html"
    width="640" height="480" name="Showcase" scrolling="no" marginwidth="0px" marginheigth="0px" frameborder="0" align="top">
</iframe>

我想一个没有边界,以使嵌入它。 但是,正如你可以在下面的图片中看到,有上的iframe,我不希望有顶部15px的黑色“矩形”。

什么人可以看到的是Showcase.html(这是黑色)的背景。

正如我可以在Mozilla萤火虫看到,黑色的“矩形”是身体元件的一部分。 画布对象位于15PX低于顶。

如何更改代码,以便在画布对象之上开始?

下面是Showcase.html的代码:

<!DOCTYPE html>
<html>
  <head>
    <title>PlayN Showcase</title>
    <style>
      @font-face {
        font-family: "Museo";
        src: url(showcase/text/Museo.ttf);
      }
    </style>
  </head>
  <body bgcolor="black">
    <script src="showcase/showcase.nocache.js"></script>
  </body>
</html>

Answer 1:

你尝试加入的风格=“保证金:0;填充:0” body元素?



文章来源: PlayN-canvas object not on top of page
标签: html playn