概要

このサンプルではテキストボックスにフォーカスする時に、ソフトウェアキーボードコントロールの表示を確認することができます。

ソフトウェアキーボード(GcSoftKeyboard)コントロールは、画面上にキーボードを表示して、マウス操作で文字を入力することができます。ソフトウェアキーボードは、ハードウェアキーボードを使用せずに文字を入力することで、キーボード入力を監視して情報を盗まれることを防ぎやすくなります。 ソフトウェアキーボードは、HTML入力要素とGcTextBoxで文字入力をサポートします。
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') }); document.getElementById('input').addEventListener('focus', () => { gcSoftKeyboard.open(); });
<!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: 500px; }
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' }, } });