表示方法

このサンプルではいくつかソフトウェアキーボードの表示方法を確認することができます。コントロールにフォーカスする時や、ボタンクリックで表示などを対応しています。

ソフトウェアキーボードは、様々な表示方法に対応しています。 フォーカス時に表示 フォーカス時にソフトウェアキーボードを表示するには、入力要素のfocusイベント発生時にGcSoftKeyboardのopenメソッドを呼び出します。 ボタンクリックで表示 ボタン押下時にソフトウェアキーボードを表示するには、ボタンのclickイベント発生時にGcSoftKeyboardのopenメソッドを呼び出します。 ドロップダウン表示 ソフトウェアキーボードをドロップダウンとして表示するには、GcTextBox.addDropDownSoftKeyboardメソッドの第3引数にfalseまたはnullを指定して呼び出します。 ポップアップ表示 ソフトウェアキーボードをポップアップとして表示するには、GcTextBox.addDropDownSoftKeyboardメソッドの第3引数にtrueを指定して呼び出します。
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(); }); // ボタンクリック時にソフトウェアキーボードを表示する document.getElementById('showKeyboard').addEventListener('click', () => { gcSoftKeyboard.open(); }); // ソフトウェアキーボードをドロップダウン表示する const gcTextBox1 = new InputMan.GcTextBox(document.getElementById('gcTextBox1')); gcTextBox1.addDropDownSoftKeyboard(); // ソフトウェアキーボードをポップアップ表示する const gcTextBox2 = new InputMan.GcTextBox(document.getElementById('gcTextBox2')); gcTextBox2.addDropDownSoftKeyboard(null, null, true);
<!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> <div> フォーカス時に表示<br> <input id="input"> <button id="showKeyboard">ボタンクリックで表示</button> <div id="gcSoftKeyboard"></div> </div> <div> ドロップダウン表示<br> <input id="gcTextBox1"> </div> <div> ポップアップ表示<br> <input id="gcTextBox2"> </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' }, } });