Keymap - Preview

Keymap - Preview

Create with jQuery a keymap to display key bindings

Download GitHub-Mark GitHub


Example Commands

Hover or click on the commands to display the key binding.

Refresh browser Save website Set bookmark

More details of the API

GitHub Wiki

Create your own layout

More details

Example Code

$(document).ready(function(){
    $('.keymap').keymap({"css": {"key": {"background": "white", "color": "black"}}});
    $('.command_refresh').createShortcut('.keymap', ["f5"], {},":first");
    $('.command_save').createShortcut('.keymap', ["ctrl", "s"], {}, ":first");
    $('.command_bookmark').createShortcut('.keymap', [17, 68], {}, ":first");
});