PS3 上有用于按下控制器的 DOM 事件吗?

发布于 2024-11-03 22:53:19 字数 131 浏览 1 评论 0原文

我想开发一个易于通过 Playstation 3 PS3 游戏控制台网络浏览器使用的网站。我认为在控制台上按下按钮时进行屏幕操作会很好。

经过大量搜索后,我找不到有关如何执行此操作的信息。

任何信息或链接都非常感谢!

I want to develop a site which is easy to use from a Playstation 3 PS3 game console web browser. I thought it would be good to make screen actions on button presses on the console.

I can find no information on how to do this after quite a bit of searching.

Any info or links highly appreciated!

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

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

发布评论

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

评论(2

萌无敌 2024-11-10 22:53:19

为什么不编写一个为每次“击键”显示一条消息的函数,您将看到它们代表什么值:

$(document).keypress(function(event) {
   alert(event.which);
});

然后您可以使用从该测试中获得的数字并基于该数字创建一些逻辑。

也许像这样:

if(event.which == 13) {
    // display cool menu maybe?
}

Why not write a function that displays a message for every "keystroke" and you'll see what values they represent:

$(document).keypress(function(event) {
   alert(event.which);
});

Then you can use the number you get from this test and create some logic based on that.

Like this perhaps:

if(event.which == 13) {
    // display cool menu maybe?
}
脸赞 2024-11-10 22:53:19

从我到目前为止的测试来看,左摇杆生成鼠标事件,带有箭头的左键盘生成与箭头相对应的键盘事件,而右摇杆生成鼠标事件,但不幸的是它不会移动鼠标,而是滚动窗口。
我不知道如何检测摇杆被推向哪个方向(除非光标实际移动或背景滚动,在这种情况下这是非常微不足道的)。

检查:http://vanisoft.pl/~lopuszanski/public/ps3/

From what I've tested so far, the left stick generates mouse events, left pad with arrows generates keyboard events corresponding to arrows, while the right stick generates a mouseevent but unfortunately it does not move the mouse, but rather scrolls the window.
I do not know how to detect in which direction the stick is pushed (unless the cursor actually moved or the background scrolled, in which cases it is quite trivial).

Check: http://vanisoft.pl/~lopuszanski/public/ps3/

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