ファンクションキーコントロールは、コントロールと任意のキーの可視化を切り替えることができます。
コントロールを非表示にしながらコントロールの機能を利用したい場面などに有効です。
コントロールの可視化を切り替える方法
コントロール全体を非表示には、visibleプロパティをfalseに指定します。
この時、コントロールは非表示になりますがコントロールの機能が無効になるわけではありません。
また非表示になったコントロールを再度表示するには、visibleプロパティをtrueに指定します。
任意のキーの可視化を切り替える方法
任意のキーを非表示にする場合、setVisibleメソッドの第1引数にfalse、第2引数に非表示にしたいキーを指定します。
また非表示になったキーを再表示するには、setVisibleメソッドの第1引数にtrue、第2引数に表示したいキーを指定します。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import './styles.css';
import { InputMan } from '@mescius/inputman';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
// ファンクションキー
let gcFunctionKey = new InputMan.GcFunctionKey(document.getElementById('functionkey'), {
functionKeys: [
{
key: GC.InputMan.FunctionKey.F1,
description: 'F1キー'
},
{
key: GC.InputMan.FunctionKey.F3,
description: 'F3キー'
},
{
key: GC.InputMan.FunctionKey.Home,
description: 'Home'
},
{
key: GC.InputMan.FunctionKey.End,
description: 'End'
}
],
onActived: function (s, e) {
window.alert(e.description + 'が押下されました。');
}
});
document.getElementById('controlVisible').addEventListener('click', (e) => {
gcFunctionKey.visible = e.target.checked;
});
document.getElementById('keyVisible').addEventListener('click', (e) => {
let selectKey = keyArrays[document.getElementById('targetKey').selectedIndex];
gcFunctionKey.setVisible(e.target.checked, selectKey);
});
const keyArrays = [
GC.InputMan.FunctionKey.F1,
GC.InputMan.FunctionKey.F3,
GC.InputMan.FunctionKey.Home,
GC.InputMan.FunctionKey.End,
]
<!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 id="functionkey"></div>
<table class="sample">
<tr>
<th>コントロール全体</th>
<td>
<label><input type="checkbox" id="controlVisible" checked>可視化する</label>
</td>
</tr>
<tr>
<th>キーの指定</th>
<td>
<select id="targetKey">
<option>F1</option>
<option>F3</option>
<option>Home</option>
<option>End</option>
</select>
<label><input type="checkbox" id="keyVisible" checked>可視化</label>
</td>
</tr>
</table>
<br>
コントロールもしくはキーが非表示の場合でも、キーに割り当てられた機能は有効なままです。
</body>
</html>
body {
padding-bottom: 2rem;
}
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'
},
}
});