时间:2010-07-25 13:53:02

标签: web-applications hotkeys

4 个答案:

答案 0 :(得分:14)

答案 1 :(得分:9)

答案 2 :(得分:0)

与大多数列表一样,列出(并因此找到)存在的内容而不是可用内容更容易。取决于您如何定义"安全热键"有很多(基本的),或数千(稍高级的,如Gmail使用两个字母组合(热字符串))。

我认为您可以做的最好的事情是查看OSbrowser个特定热键的这两个综合列表,并根据这些列表制作一个列表。如果您想更进一步,here is something that might help you (not tested it myself)

针对您的具体问题,我认为您应该了解Gmail,Facebook,记住Milk使用热键的方式;因为这些都优雅地解决了你的问题。如果您列出他们使用的内容,您可能会在那里使用热键列表。另外,我使用Breevy,AutoHotkey和其他几个我创建高级热键类型的程序(43,456和计数),因为它们很简单,所以几乎没有问题与它们的系统重叠热键。

答案 3 :(得分:0)

Facebook根据使用的浏览器使用以下需要不同主键的按键:

https://www.facebook.com/help/156151771119453?helpref=faq_content

from collections import Counter
from itertools import chain

d={0:[0.1,0.2,0.1], 1:[1.1,1.2,0.1], 2:[2.1,2.2,0.1]}
c = Counter(chain.from_iterable(d.values()))
print(c)
# Counter({0.1: 4, 0.2: 1, 1.2: 1, 2.2: 1, 1.1: 1, 2.1: 1})

但是,Facebook支持所有浏览器中的这些快捷方式:

Key Combinations for Different Browsers

Find the right combination of keys for your browser in the list below, and replace # with the access key number listed under Access Keys below.

Internet Explorer for PC: Alt + #, then Enter
Firefox for PC: Shift + Alt + #
Safari for Mac: Ctrl + Opt + #
Firefox for Mac: Ctrl + Opt + #
Chrome for Mac: Ctrl + Opt + #
Chrome for PC: Alt + #

Access Keys
0 - Help
1 - Home
2 - Timeline
3 - Friends
4 - Inbox
5 – Notifications
6 – Settings
7 - Activity Log
8 - About
9 - Terms

结论:某些快捷方式可能适用于所有浏览器,但大多数都需要其他解释。

相关问题