Giter Club home page Giter Club logo

keyboard's Introduction

A jQuery on-screen keyboard (OSK) plugin that works in the browser. Originally posted by Jeremy Satterfield in his blog, jQuery plugins and on Snipplr. Currently maintained by Mottie.

Bower Version NPM Version devDependency Status Join the chat at https://gitter.im/Mottie/Keyboard FOSSA Status

Features (Demo)

Ease of use

  • An on-screen virtual keyboard embedded within the browser window which will popup when a specified entry field is focused.
  • The user can then type and preview their input before Accepting or Canceling.
  • It can be set to always remain open, and to not use a preview.

Ease of installation

  • Grab the files as a zip, or from npm or bower - see the installation section below.
  • In a minimal setup, the keyboard works by including:
    • jQuery
    • jQuery UI theme
    • (optional) jQuery UI position utility to position the keyboard at the input/textarea element
    • Initialize keyboard - no options needed for qwerty keyboard.

Ease of setup

  • Attach a keyboard to inputs, textareas or contenteditable elements.
  • Add custom keyboard layouts easily.
  • Multiple region specific keyboard layouts included in a separate directory. This is a work in progress and slowly growing.
  • Add up to four standard key sets to each layout that use the shift and alt keys (default, shift, alt and alt-shift).
  • Add any number of optional modifier keys (meta keys) to add more key sets.
  • Each meta key set can also include the shift, alt and alt-shift keysets.
  • Position the keyboard in any location around the element, or target another element on the page (using jQuery UI position utility).
  • Easily modify the key text to any language or symbol.
  • Allow direct input or lock the preview window.
  • Set a maximum length to the inputted content.
  • Scroll through the other key sets using the mouse wheel while hovering over a key to bypass the need to use alt, shift or meta keys.
  • Easily type in characters with diacritics. Here are some default combination examples:
    • ' + vowel ( vowel with acute accent, e.g. ' + e = é )
    • ` + vowel ( vowel with grave accent, e.g., ` + e = è )
    • " + vowel ( vowel with diaresis, e.g., " + e = ë )
    • ^ + vowel ( vowel with circumflex accent, e.g., ^ + e = ê )
    • ~ + certain letters ( letter with tilde, e.g. ~ + n = ñ, ~ + o = õ )
  • Enable, disable or add more diacritic functionality as desired.
  • Use callbacks and event triggers that occur when the keyboard is open or closed and when the content has changed, been accepted or canceled.
  • Includes ARIA support (may not be fully implemented).
  • Built in watermarking. It emulates HTML5's placeholder, if the browser doesn't support it.
  • Include validation using a callback function so third-party validation methods can be used.

Themes

Extensions

  • Alt-keys: Show alternate keys in a popup after long-clicking on a key.
  • Autocomplete: Integrate with jQuery UI's autocomplete widget.
  • Caret: Add a caret with custom styling.
  • Extender: Add a togglable layout (e.g. toggle number pad)
  • Keyset: Show shift, alt or meta keyset within the virtual keyboard - custom styling.
  • Mobile: Use with jQuery Mobile & jQuery Mobile v1.4.
  • Navigate: Use arrow, home, end & page up/down to navigate inside of the keyboard.
  • Scramble: Scramble the entire keyset or by row, once or every time the keyboard is opened for added security.
  • Typing: Allows you to simulate typing into the keyboard for demo purposes or to assist user input.

Dependencies

  • Required
    • jQuery 1.4.3+
    • jQuery caret (included with source)
  • Optional
    • jQuery UI Positioning Utility (optional, if you position the keyboard yourself)
    • jQuery UI CSS (can be customized) / Bootstrap CSS
    • jQuery mousewheel plugin - allows using mousewheel to scroll through other key sets
    • jQuery UI Autocomplete widget - use with jQuery keyboard autocomplete extension

Installation

TypeScript

You can use it with TypeScript. Install TypeScript and @types/virtual-keyboard into dev dependencies for that.

Documentation

Wiki: Home | FAQ | Setup | Usage | Options ( Layout, Language, Useability, Actions ) | Methods | Theme | Log

To Do

  • Add an input mask extension. I think I'll try to make it compatible with this plugin.
  • Allow attaching a keyboard to a contenteditable element. Added v1.27.0.

Known Problems

  • ALL: Only inputs of type "text", "search", "url", "telephone" and "password" support caret positioning (ref). Using this keyboard with any other input type will break the caret left/right, backspace and delete keys (see issue #241 for details).
  • Mobile: If the key press lags behind by one character, it is likely due to the mousewheel plugin. Disable it. See issues #379 & #411.
  • IE and Opera:
    • In a text area with multiple carriage returns, the caret positioning will be off when repositioning it with the mouse.
    • Using the right and left arrow keys to navigate through a text area with multiple carriage returns is problematic. The caret doesn't behave like in other browsers when moving from one line to the next. You can always reposition the caret using the mouse.
  • Opera: When pressing the tab key while inside a textarea, all browsers but Opera add the tab to the virtual keyboard textarea.
  • Safari: See the QWERTY Text Area demo with a locked input. While using the virtual keyboard to type, it enters the text in backwards! This is because textareas with a "readonly" attribute always returns zero for the caret position.
  • Typing Extension:
    • When pressing "Alt", the key set will change to the alt key set, but the focus will be moved to the browser menu. Pressing it quickly a second time will return the focus. This is built into the browser and it isn't possible (as far as I know) to automatically restore the window focus the first time alt is pressed.
    • Holding down the Alt key and trying to type is also not possible since the Windows OS is assuming you are trying to type a shortcut key to access the browser menu. You can still click the keys in the alt key set with the mouse.
    • Simulated typing on the keyboard breaks when the CapsLock is on. Still looking for a cross-browser solution.

Contributing

  • Install node.js - this includes npm (node package manager).
  • Run npm install in the root directory.
  • Run npm install -g grunt-cli to install the grunt command-line interface.
  • Make any changes to the code.
  • Unit tests will be added later.
  • Run grunt to perform a new build in the /dist folder.
  • Submit a pull request from a branch other than the master.

Licensing

  • Keyboard code: MIT License for all versions.
  • Caret code by C. F., Wong (Cloudgen): MIT License
  • Layouts files: Most are under WTFPL, unless the file itself specifies otherwise.

FOSSA Status

Change Log

Only the latest changes will be shown below, see the wiki log to view older versions.

Version 1.27.3 (12/16/2017)

  • Core: Prevent JS error while checking closeByClickEvent. Fixes issue #634.
  • Meta: Update dependencies.

Version 1.27.2 (12/6/2017)

  • Core:
    • Prevent JS error on empty contenteditable.
    • Fix contenteditable caret position at beginning of line.

Version 1.27.1 (12/1/2017)

  • Core:
    • Prevent bksp wrap to end. Fixes issue #628.
    • Allow using {space} in restrictInclude option. Fixes issue #627.

keyboard's People

Contributors

mottie avatar bsurai avatar jmsanzg avatar aflorea avatar brandonlwhite avatar pacoalcantara avatar akiraspeirs avatar david-hollifield avatar ptwz avatar ihsoft avatar insightfuls avatar adrianfish avatar barisaydinoglu avatar chosko avatar eugenius avatar laminko avatar lorenzo-stoakes avatar martin-vavra avatar peters avatar pietroliuzzo avatar kant312 avatar bastih avatar simon04 avatar gitter-badger avatar vick-edit avatar alinanova21 avatar fossabot avatar ohohyeah avatar tbvinh avatar unmanner avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.