Processingjs 未显示在 Firefox 3.6 中
我正在尝试使用 Processsingjs 库开发一个新网站。它在 Chrome 中工作正常,但在 Firefox 中画布显示为空白。
我可以通过同一安装的 Firefox 很好地查看processingjs.org,但不能查看我的网站。
代码很简单:
<!-- index.html -->
<script src="includes\processing-0.9.7.js"></script>
<canvas datasrc="test.pjs" width="700" height="500">text</canvas>
// test.pjs
void setup() {
size(700, 500);
}
void draw() {
background(0);
}
值得注意的是“文本”不会出现在 Firefox 中。任何人都可以帮我排除故障吗?我真的想不出更简单的代码。
I'm attempting to develop a new website using the Processsingjs library. It works fine in Chrome, but the canvas is showing up blank in Firefox.
I can view processingjs.org just fine through the same install of firefox, just not my website.
The code is bare bones:
<!-- index.html -->
<script src="includes\processing-0.9.7.js"></script>
<canvas datasrc="test.pjs" width="700" height="500">text</canvas>
// test.pjs
void setup() {
size(700, 500);
}
void draw() {
background(0);
}
It's worth noting that "text" doesn't show up in Firefox. Can anyone me to troubleshoot? I can't really think of a simpler code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“includes/processing-0.9.7.js”比“includes\processing-0.9.7.js”更标准(即正斜杠,而不是反斜杠)。您需要使用 URL,而不是 Windows 路径。
"includes/processing-0.9.7.js" would be more standard than "includes\processing-0.9.7.js" (ie forward-slash, not back-slash). You need to use a URL, not a Windows path.