simple-keyboard/README.md

74 lines
3.5 KiB
Markdown
Raw Permalink Normal View History

2019-08-13 13:19:13 +08:00
<p>
<a href="https://simple-keyboard.com/demo">
2022-09-02 03:50:18 +08:00
<img alt="simple-keyboard: Javascript Virtual Keyboard" src="https://user-images.githubusercontent.com/25509135/187999993-fb5422fd-a56f-4a9a-84a9-55c94478f61c.gif">
2019-08-13 13:19:13 +08:00
</a>
2024-02-17 08:57:41 +08:00
<a href="https://www.npmjs.com/package/simple-keyboard"><img src="https://badgen.net/npm/v/simple-keyboard?color=blue" alt="npm version"></a> <a href="https://github.com/hodgef/simple-keyboard/blob/master/LICENSE"><img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="MIT license"></a> <a href="https://github.com/hodgef/simple-keyboard/actions"><img alt="Build Status" src="https://github.com/hodgef/simple-keyboard/workflows/Build/badge.svg" /></a> <a href="https://github.com/hodgef/simple-keyboard/actions"><img alt="Publish Status" src="https://github.com/hodgef/simple-keyboard/workflows/Publish/badge.svg" /></a> <a href="https://gitlab.com/hodgef/simple-keyboard" target="_blank"><img alt="Mirroring" src="https://github.com/hodgef/simple-keyboard/actions/workflows/mirroring.yml/badge.svg" /></a>
2019-08-13 13:19:13 +08:00
</p>
2018-04-21 04:34:02 +08:00
2021-03-19 10:43:29 +08:00
<blockquote>Virtual Keyboard for Javascript. Compatible with your JS, React, Angular or Vue projects.</blockquote>
2019-08-13 23:14:44 +08:00
2021-03-26 23:42:11 +08:00
## 🚀 Demo
2021-03-16 12:41:42 +08:00
2019-08-13 13:28:28 +08:00
[Demo Showcase (Vanilla, Angular, React, Vue)](https://simple-keyboard.com/demo)
2021-03-26 23:42:11 +08:00
## 📦 Installation & Usage
2021-03-16 12:41:42 +08:00
2018-10-21 02:37:06 +08:00
You can use simple-keyboard as a `<script>` tag from a CDN, or install it from npm.
2021-03-16 12:41:42 +08:00
2018-10-21 02:47:31 +08:00
Check out the [Getting Started](https://simple-keyboard.com/getting-started) docs to begin.
2018-04-21 04:34:02 +08:00
2021-03-26 23:42:11 +08:00
## 📖 Documentation
2021-03-16 12:41:42 +08:00
2018-10-21 02:47:31 +08:00
Check out the [simple-keyboard documentation](https://simple-keyboard.com/documentation) site.
2018-04-24 21:38:14 +08:00
2019-11-04 09:26:45 +08:00
Feel free to browse the [Questions & Answers (FAQ)](https://simple-keyboard.com/qa-use-cases/) page for common use-cases.
2018-09-25 03:52:54 +08:00
2018-04-21 04:34:02 +08:00
### To run demo on your own computer
2021-03-16 12:41:42 +08:00
- Clone this repository
- `npm install`
- `npm start`
- Visit [http://localhost:3000/](http://localhost:3000/)
2018-04-21 04:34:02 +08:00
2018-06-08 22:59:11 +08:00
### Other versions
2018-04-21 04:34:02 +08:00
2021-03-16 12:41:42 +08:00
- [React.js](https://github.com/hodgef/react-simple-keyboard)
- [Angular](https://simple-keyboard.com/demo)
- [Vue.js](https://simple-keyboard.com/demo)
2018-06-08 22:59:11 +08:00
2020-05-28 13:12:00 +08:00
### Questions? Join the chat
2018-10-09 07:12:51 +08:00
2020-06-14 03:38:34 +08:00
<a href="https://discordapp.com/invite/SJexsCG" title="Join our Discord chat" target="_blank"><img src="https://discordapp.com/api/guilds/498978399801573396/widget.png?style=banner2" align="center"></a>
2018-10-09 07:12:51 +08:00
2021-03-26 23:42:11 +08:00
## ✳️ Modules
2019-10-16 05:00:15 +08:00
2020-05-28 13:10:55 +08:00
You can extend simple-keyboard's functionality with [modules](https://hodgef.com/simple-keyboard/modules/). Such as:
2019-10-16 05:00:15 +08:00
2021-03-16 12:41:42 +08:00
- [Autocorrect](https://hodgef.com/simple-keyboard/modules/autocorrect/)
- [Input Mask](https://hodgef.com/simple-keyboard/modules/input-mask/)
- [Key Navigation](https://hodgef.com/simple-keyboard/modules/key-navigation/)
- [Swipe Keyboard](https://hodgef.com/simple-keyboard/modules/swipe-keyboard/)
2019-10-16 05:00:15 +08:00
2020-05-28 13:10:55 +08:00
Want to create your own module? Check out the [Modules page](https://hodgef.com/simple-keyboard/modules/) for instructions.
2019-10-16 05:00:15 +08:00
2021-03-26 23:42:11 +08:00
## 🎯 Compatibility
2021-03-18 12:11:23 +08:00
2021-03-16 12:41:42 +08:00
- Internet Explorer 11
- Edge (Spartan) 16+
- Edge (Anaheim/Edge Chromium) 79+
- Chrome 49+
- Safari 9+
- Firefox 57+
- iOS 9+
2019-09-25 23:34:23 +08:00
2021-10-13 16:52:09 +08:00
> Note: If you don't want to support old browsers, you can use the Modern Browsers bundle ([index.modern.js](https://github.com/hodgef/simple-keyboard/blob/master/build)).
2021-10-13 12:40:31 +08:00
2024-10-04 06:06:03 +08:00
## 🔶 Community Libraries & Integrations
Check out useful community modules for simple-keyboard:<br />
https://github.com/hodgef/simple-keyboard/wiki/Community-Libraries-&-Integrations
2021-03-26 23:42:11 +08:00
## ✅ Contributing
2019-09-25 23:41:12 +08:00
2020-08-26 12:54:56 +08:00
PRs and issues are always welcome. Feel free to submit any issues you have at:
2019-09-25 23:41:12 +08:00
[https://github.com/hodgef/simple-keyboard/issues](https://github.com/hodgef/simple-keyboard/issues)