Processingjs 未显示在 Firefox 3.6 中

发布于 2024-09-30 19:29:29 字数 495 浏览 6 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谢绝鈎搭 2024-10-07 19:29:29

“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文