覆盖镀铬扩展?

发布于 2025-01-06 08:01:48 字数 363 浏览 1 评论 0原文

我正在构建扩展。基本上我正在尝试制作一个基于 PMOG(the Nethernet)的基于网络的角色扮演游戏。我正在寻找某种像这样的覆盖函数: http://img.skitch.com/20080814-ms5hmqh3433rgt7cg2yg13kcka.jpg 有什么想法吗?

编辑

另外,有什么方法可以记录某人访问的网站,而不实际记录这些网站?我试图根据他们每天访问网站的次数来赚取经验值和金币。 (IE 第一次 40xp/gold,其他时间 10xp)

I am in the middle of a Extension build. Basically I'm trying to do a web-based RPG based off of PMOG(the Nethernet). I'm looking for some kind of overlay function like this:
http://img.skitch.com/20080814-ms5hmqh3433rgt7cg2yg13kcka.jpg
Any ideas?

edit

Also, is there any way I can log the websites someone goes to, without actually logging the websites? I'm trying to base EXP earned and Gold earned on how many times they go to a website per day. (I.E. 40xp/gold the first time and 10 every other time)

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

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

发布评论

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

评论(1

╰つ倒转 2025-01-13 08:01:48

要创建“弹出窗口”,您需要在页面上创建一个具有非常高的 z-index(这是 CSS 属性)的

z-index 确定哪些内容位于其他内容之上。从那里,您可以使用绝对/相对定位来确定它应该出现在屏幕上的位置(再次使用 CSS)。要显示/关闭它,您可以使用多种 JavaScript 技术(包括将其从页面滑入)。

To create "pop overs", you would create a <div> on the page with a very high z-index (which is a CSS attribute). z-index determine what goes on top of what else. From there, you can use absolute/relative positioning to determine where it should appear on the screen (again, using CSS). To show/dismiss it, you can use a large variety of JavaScript techniques (including sliding it in from off the page).

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