コンボコントロールでは、ドロップダウンの表示スペースを判定して、自動的に適切な方向にドロップダウンを表示することができます。また、ドロップダウンの表示/非表示を切り替えるときのアニメーション効果を選択できます。
ドロップダウンの方向
ドロップダウンは通常コントロールの下に表示されますが、コントロールの下にドロップダウンを表示できる十分なスペースがない場合は、ドロップダウンがコントロールの上に表示されます。ドロップダウンの表示スペースを判定するとき、既定ではWebページ本体(body要素)をコンテナとして扱いますが、setContainerメソッドで任意の要素をコンテナとして指定することも可能です。
ドロップダウンのアニメーション効果
ドロップダウンリストを表示/非表示を切り替えるときに、アニメーション効果を設定することができます。コントロール全体に一括適用するか、各コントロールに異なるアニメーション効果を設定できます。animationTypeプロパティに設定できる値は以下のとおりで、既定値はDropDownAnimationType.Noneです。
値
アニメーション効果
None
効果なし
SlideDown
スライドダウン
SlideUp
スライドアップ
Popup
ポップアップ要素
Expand
拡大表示
次のサンプルコードは、すべてのコントロールのドロップダウンにアニメーション効果を適用します。
次のサンプルコードは、指定コントロールのドロップダウンにアニメーション効果を適用します。
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 gcComboBox1 = new InputMan.GcComboBox(document.getElementById('gcComboBox1'), {
items: products,
container: document.getElementById('container1')
});
const gcComboBox2 = new InputMan.GcComboBox(document.getElementById('gcComboBox2'), {
items: products,
container: document.getElementById('container2')
});
const animationType = [
InputMan.DropDownAnimationType.None,
InputMan.DropDownAnimationType.SlideDown,
InputMan.DropDownAnimationType.SlideUp,
InputMan.DropDownAnimationType.Popup,
InputMan.DropDownAnimationType.Expand,
];
document.getElementById('setAnimationType').addEventListener('change', (e) => {
gcComboBox1.getDropDownWindow().animationType = animationType[e.target.selectedIndex];
gcComboBox2.getDropDownWindow().animationType = animationType[e.target.selectedIndex];
});
<!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 class="flexbox">
<div id="container1">
<p>ドロップダウンが下に表示されます。</p>
<select id="gcComboBox1"></select>
</div>
<div id="container2">
<p>ドロップダウンが上に表示されます。</p>
<select id="gcComboBox2"></select>
</div>
</div>
<table class="sample">
<tr>
<th>アニメーション効果</th>
<td>
<select id="setAnimationType">
<option selected>なし</option>
<option>スライドダウン</option>
<option>スライドアップ</option>
<option>ポップアップ</option>
<option>拡大</option>
</select>
</td>
</tr>
</table>
</body>
</html>
.flexbox {
display: flex;
flex-wrap: wrap;
}
.flexbox > div {
height: 300px;
width: 300px;
background-color: #f8f8f8;
}
#container2 > p {
margin-top: 220px;
}
export const products = ['果汁100%オレンジ', '果汁100%グレープ', '果汁100%レモン', '果汁100%ピーチ', 'コーヒーマイルド', 'コーヒービター'];
[gcim-control-appearance="modern"] .flexbox {
display: flex;
flex-wrap: wrap;
}
[gcim-control-appearance="modern"] .flexbox > div {
height: 300px;
width: 300px;
background-color: #f8f8f8;
}
[gcim-control-appearance="modern"] #container2 > p {
margin-top: 220px;
}
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'
},
}
});