0

我正在尝试使用 HTML 文件在我的 WordPress 网站上创建一个页面。当我输入代码并预览页面时,会显示标题和页脚,并显示消息“没有 HTML5 画布!” 在他们之间。我的脚本中有这行代码,据我所知应该是创建画布:

<canvas id="screen" name="screen" width=480 height=480 class="noselect">No HTML5 canvas!                                 
</canvas>

这是我第一次使用 HTML,如果我遗漏了什么,请道歉。任何人都可以提供的任何帮助将不胜感激。

4

3 回答 3

2

您的代码工作正常,这是一个证明它的小提琴,问题可能出在您的浏览器上

<canvas id="screen" name="screen" width=480 height=480 class="noselect">No HTML5 canvas!                                 
</canvas>

查看此页面以获取支持html 5 canvas的浏览器列表

于 2013-08-25T20:27:47.357 回答
1

联系了 WordPress 支持,结果发现该网站根本不支持 Canvas。

于 2013-08-27T06:23:21.000 回答
0

Could you not code your html file the way you want with your canvas tag in it, upload it to an external site and then in your WordPress site use an iFrame and set the src to be your html file with the canvas tag? This might be a way around your problem

<iframe src="http://www.google.com"></iframe>

Or either try this http://www.learnopengles.com/how-to-embed-webgl-into-a-wordpress-post/

于 2014-08-21T11:14:28.557 回答