キーのカスタマイズ

このサンプルではソフトウェアキーボードに任意のキーを追加または削除する方法を示しています。

ソフトウェアキーボードでは、次のプロパティでキーの一覧を管理しています。 プロパティ名 説明 numericKeys 数字キー alphabetKeys アルファベットキー symbolKeys 記号キー これらのプロパティはIKeyCollection型で、addKeyメソッドで任意のキーを追加したり、removeKeyメソッドで既存のキーを削除したりすることができます。 このサンプルでは、全てのひらがなキーを追加しています。
import '@mescius/inputman/CSS/gc.inputman-js.css'; import { InputMan } from '@mescius/inputman'; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; const gcSoftKeyboard = new InputMan.GcSoftKeyboard(document.getElementById('gcSoftKeyboard'), { target: document.getElementById('input'), displayType: InputMan.DisplayType.Numeric | InputMan.DisplayType.Alphabet }); document.getElementById('input').addEventListener('focus', () => { gcSoftKeyboard.open(); }); // 数字キーをすべて削除して、代わりにひらがなキーを追加します。 gcSoftKeyboard.numericKeys.removeKey('1234567890'.split('')); for (let c = 'ぁ'.charCodeAt(); c <= 'ん'.charCodeAt(); c++) { gcSoftKeyboard.numericKeys.addKey(String.fromCharCode(c)); }
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>ソフトウェアキーボード - 概要</title> <!-- SystemJS --> <script src="node_modules/systemjs/dist/system.src.js"></script> <script src="systemjs.config.js"></script> <script> window.onload = function() { System.import('./src/app'); } </script> </head> <body> フォーカス時に表示<br> <input id="input"> <div id="gcSoftKeyboard"></div> </body> </html>
body { min-height: 650px; }
System.config({ transpiler: 'plugin-babel', babelOptions: { es2015: true }, meta: { '*.css': { loader: 'css' } }, paths: { // paths serve as alias 'npm:': 'node_modules/' }, // map tells the System loader where to look for things map: { '@mescius/inputman': 'npm:@mescius/inputman/index.js', '@mescius/inputman/CSS': 'npm:@mescius/inputman/CSS', 'css': 'npm:systemjs-plugin-css/css.js', 'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js', 'systemjs-babel-build': 'npm:systemjs-plugin-babel/systemjs-babel-browser.js' }, // packages tells the System loader how to load when no filename and/or no extension packages: { src: { defaultExtension: 'js' }, "node_modules": { defaultExtension: 'js' }, } });