Processing.js 会影响整个网页吗?

发布于 2024-11-17 16:37:53 字数 313 浏览 4 评论 0原文

我的朋友有一个 Flash 脚本,可以在他的主页顶部绘制吃豆人。问题是 Flash 动画不允许他点击他的页面。

我试图说服他改用Processing.js,但我不确定Processing是否可以在网页的任意部分上涂抹(例如,通过使用与页面大小相同的画布但允许点击)。

处理特定问题:填充画布(例如 background(white);)会遮挡画布下可能显示的任何 HTML 元素。

建议?

My friend has a Flash script that draws Pacman on top of his homepage. The bug is that the flash animation doesn't let him click on his page.

I'm trying to convince him to use Processing.js instead, but I'm not sure whether even Processing can blot on arbitrary parts of a webpage (e.g. by using a canvas the same size as the page but letting clicks through).

Processing-specific issue: Filling the canvas (e.g. background(white);) obscures any HTML elements that might have displayed under the canvas.

Suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

孤者何惧 2024-11-24 16:37:53

只需使用两个或三个动画 GIF 作为 PACMAN 图像...并让 javascript 使用 position:absolute; 移动 DIV; z-index: 10000; 跨页面。

您可以查看 jQuery 来简化操作。

Just use two or three animated GIF's for the PACMAN image... and have javascript move a DIV with position: absolute; z-index: 10000; across the page.

You can look into jQuery to ease up things.

梦纸 2024-11-24 16:37:53

我认为Flash要么无法实现鼠标轨迹,要么比JS困难得多。请参阅本教程:http://www.kirupa.com/developer/as3/dynamic_mouse_trail_flash_pg1.htm ,鼠标轨迹演示卡在一个盒子里。我想是因为 Flash 是一款要么全有要么全无的应用程序。您无法真正将其与浏览器结合起来(即 Flash 不能完全与 DOM 配合使用)。

但这是教科书式的 JavaScript。

有关 JS 与 ActionScript 的更多信息,请参阅此页面 - http://positionabsolute .net/blog/2007/04/actionscript-vs-javascript.php

I believe Flash either can't implement the mouse-trail or it is far more difficult than JS. See this tutorial : http://www.kirupa.com/developer/as3/dynamic_mouse_trail_flash_pg1.htm , where the mouse-trail demo is stuck in a box. I think because Flash is an all-or-nothing app. You can't truly mesh it in with the browser(i.e. Flash doesn't fully work with the DOM).

This is textbook JavaScript though.

See this page for more info on JS vs. ActionScript - http://positionabsolute.net/blog/2007/04/actionscript-vs-javascript.php

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