スタイルの設定

このサンプルではテキストコントロールの背景色や幅、高さなどのスタイルをCSSに設定する場合のソースコードを確認することができます。

本製品ではコントロールの高さや幅などのサイズのほか、背景色や文字色などを含め、コントロールの外観はすべてCSS(Cascading Style Sheet)により設定します。 コントロールで使用されるCSSクラスの詳細については、以下の製品ヘルプをご参照ください。 コントロールの外観設定 入力コントロールのCSS 新しいスタイルの設定方法 InputManJSは2種類のデザインを提供しています。appearanceStyleプロパティを設定することで、従来のデザインまたは新しいデザインを適用できます。すべてのコントロールを初期化する前に設定する必要があります。 appearanceStyleプロパティの設定できる値は次のとおりで、既定値はClassicです。 値 説明 Classic 従来のデザイン Modern 新しいデザイン
import '@mescius/inputman/CSS/gc.inputman-js.css'; import { InputMan } from '@mescius/inputman'; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; const gcTextBox1 = new InputMan.GcTextBox(document.getElementById('gcTextBox1'), { text: 'テキスト' }); const gcTextBox2 = new InputMan.GcTextBox(document.getElementById('gcTextBox2'), { text: 'テキスト', enabled: false }); const gcTextBox3 = new InputMan.GcTextBox(document.getElementById('gcTextBox3'), { watermarkDisplayNullText: '氏名', watermarkNullText: '全角で入力してください' }); var styleSheet; var indices = []; const styles = { '.gcim': { width: '200px', height: '40px', backgroundColor: '#ddffdd', borderColor: '#009900', borderWidth: '2px', borderStyle: 'dashed', borderRadius: '12px', boxShadow: '5px 5px 5px rgba(0,0,0,0.5)', color: '#009900' }, '.gcim__input': { cursor: 'crosshair', fontSize: '20px', fontWeight: 'bold', fontStyle: 'italic', fontFamily: 'serif', textAlign: 'right', textShadow: '1px 1px 1px rgba(0,0,0,0.5)' }, '.gcim__input:disabled': { backgroundColor: '#666666', color: '#cccccc', cursor: 'wait' }, '.gcim_focused': { backgroundColor: '#ddddff', borderColor: '#0000ff', color: '#0000ff' }, '.gcim_watermark_null': { backgroundColor: '#ffdddd', borderColor: '#ff0000', color: '#ff0000' }, '.gcim_focused.gcim_watermark_null': { backgroundColor: '#ffddff', borderColor: '#990099', color: '#990099' }, }; const getRulePrefix = () => { return InputMan.appearanceStyle === InputMan.AppearanceStyle.Modern ? '[gcim-control-appearance="modern"] ' : ''; } const createInitialStyles = () => { const element = document.createElement('style'); document.head.appendChild(element); styleSheet = element.sheet; var i = 0; for (const styleName in styles) { styleSheet.insertRule(getRulePrefix() + styleName + '{}', i); indices[styleName] = i; i++; } } createInitialStyles(); const updateStyle = (event) => { console.log(event); var element = event.target; if (element.tagName == 'INPUT') { var values = element.value.split(','); var styleName = values[0]; var propertyName = values[1]; styleSheet.cssRules[indices[styleName]].style[propertyName] = element.checked ? styles[styleName][propertyName] : ''; } var style = ''; for (var i = 0; i < styleSheet.cssRules.length; i++) { if (styleSheet.cssRules[i].style.length > 0) { style += styleSheet.cssRules[i].cssText.replace(/{/g, '{\n ').replace(/;/g, ';\n ').replace(/ }/g, '}') + '\n'; } } document.getElementById('style').value = style; } const copyStyle = () => { wijmo.Clipboard.copy(document.getElementById('style').value); document.execCommand('copy'); } var panels = document.getElementsByClassName('peoperty-panel'); for (var i = 0; i < panels.length; i++) { panels[i].addEventListener('click', updateStyle); } document.getElementById('copyStyle').addEventListener('click', copyStyle);
<!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> 通常の状態<br> <input id="gcTextBox1"> </div> <div> 無効な状態<br> <input id="gcTextBox2"> </div> <div> ウォーターマーク<br> <input id="gcTextBox3"> </div> </div> <div class="peoperty-header">コントロール全般のスタイル</div> <div class="peoperty-panel" > <label><input type="checkbox" value=".gcim,width">コントロールの幅</label> <label><input type="checkbox" value=".gcim,height">コントロールの高さ</label> <label><input type="checkbox" value=".gcim,backgroundColor">背景色</label> <label><input type="checkbox" value=".gcim,borderColor">境界線の色</label> <label><input type="checkbox" value=".gcim,borderWidth">境界線の幅</label> <label><input type="checkbox" value=".gcim,borderStyle">境界線のスタイル</label> <label><input type="checkbox" value=".gcim,borderRadius">境界線の角丸</label> <label><input type="checkbox" value=".gcim__input,cursor">カーソルの形</label> <label><input type="checkbox" value=".gcim,boxShadow">コントロールの影</label> </div> <div class="peoperty-header">テキストのスタイル</div> <div class="peoperty-panel" > <label><input type="checkbox" value=".gcim,color">文字色</label> <label><input type="checkbox" value=".gcim__input,fontSize">フォントのサイズ</label> <label><input type="checkbox" value=".gcim__input,fontWeight">フォントの太さ</label> <label><input type="checkbox" value=".gcim__input,fontStyle">フォントのスタイル</label> <label><input type="checkbox" value=".gcim__input,fontFamily">フォントの種類</label> <label><input type="checkbox" value=".gcim__input,textAlign">水平方向の位置</label> <label><input type="checkbox" value=".gcim__input,textShadow">テキストの影</label> </div> <div class="peoperty-header">コントロール無効時のスタイル</div> <div class="peoperty-panel" > <label><input type="checkbox" value=".gcim__input:disabled,backgroundColor">背景色</label> <label><input type="checkbox" value=".gcim__input:disabled,color">文字色</label> </div> <div class="peoperty-header">フォーカス時のスタイル</div> <div class="peoperty-panel" > <label><input type="checkbox" value=".gcim_focused,backgroundColor">背景色</label> <label><input type="checkbox" value=".gcim_focused,borderColor">境界線の色</label> <label><input type="checkbox" value=".gcim_focused,color">文字色</label> </div> <div class="peoperty-header">ウォーターマークのスタイル</div> <div class="peoperty-panel" > <label><input type="checkbox" value=".gcim_watermark_null,backgroundColor">背景色</label> <label><input type="checkbox" value=".gcim_watermark_null,borderColor">境界線の色</label> <label><input type="checkbox" value=".gcim_watermark_null,color">文字色</label> </div> <div class="peoperty-header">ウォーターマークのフォーカス時のスタイル</div> <div class="peoperty-panel" > <label><input type="checkbox" value=".gcim_focused.gcim_watermark_null,backgroundColor">背景色</label> <label><input type="checkbox" value=".gcim_focused.gcim_watermark_null,borderColor">境界線の色</label> <label><input type="checkbox" value=".gcim_focused.gcim_watermark_null,color">文字色</label> </div> <button id="copyStyle">CSSコードをコピー</button><br> <textarea id="style" cols="60" rows="10"></textarea> <script src="https://cdn.grapecity.com/wijmo/5.latest/controls/wijmo.min.js"></script> </body> </html>
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' }, } });