InputManJSでは、タッチ操作により表示されるタッチツールバーを提供します。タッチツールバーは、タッチでの操作を快適にするタッチ専用のUIです。
概要
以下のコントロールでは、選択されたテキストのタップや長押しといったタッチ操作によりタッチツールバーを表示します。
テキストコントロール
複数行テキストコントロール
マスクコントロール
日付時刻コントロール
数値コントロール
コンボコントロール
タッチツールバーは、コンテキストメニューと同じ内容のメニューが搭載され、コピー&ペーストやテキストのクリアといった操作をタッチ操作により簡単に行うことができます。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import './styles.css';
import { InputMan } from '@mescius/inputman';
import products from './data';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
const gcTextBox = new InputMan.GcTextBox(document.getElementById('gcTextBox'), {
text: 'テキスト'
});
const gcMultiLineTextBox = new InputMan.GcMultiLineTextBox(document.getElementById('gcMultiLineTextBox'), {
text: '宮城県仙台市泉区紫山3-1-4'
});
const gcMask = new InputMan.GcMask(document.getElementById('gcMask'), {
formatPattern: '〒\\D{3}-\\D{4}'
});
const gcDateTime = new InputMan.GcDateTime(document.getElementById('gcDateTime'));
const gcNumber = new InputMan.GcNumber(document.getElementById('gcNumber'));
const gcComboBox = new InputMan.GcComboBox(document.getElementById('gcComboBox'), {
items: products
});
<!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>
<p>タッチデバイスで各コントロールを長押ししてください。</p>
<div class="flexbox">
<div>
テキストコントロール<br>
<input id="gcTextBox">
</div>
<div>
複数行テキストコントロール<br>
<textarea id="gcMultiLineTextBox"></textarea>
</div>
<div>
マスクコントロール<br>
<input id="gcMask">
</div>
<div>
日付時刻コントロール<br>
<input id="gcDateTime">
</div>
<div>
数値コントロール<br>
<input id="gcNumber">
</div>
<div>
コンボコントロール<br>
<select id="gcComboBox"></select>
</div>
</div>
</body>
</html>
body {
padding-bottom: 10rem;
}
.gcim {
width: 200px;
}
module.exports = [
'果汁100%オレンジ',
'コーヒーマイルド',
'ピリピリビール',
'ホワイトソルト',
'ブラックペッパー',
'ピュアシュガー'
];
body {
padding-bottom: 10rem;
}
[gcim-control-appearance="modern"] .gcim {
width: 200px;
}
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'
},
}
});