mobiscroll.settings = {
lang: ' '
theme: 'ios',
themeVariant: 'light'
};
mobiscroll.numpad("#demo-ios", {
theme: 'ios',
themeVariant: 'light',
display: 'bubble',
touchUi: false
});
mobiscroll.numpad("#demo-ios-dark", {
theme: 'ios',
themeVariant: 'dark',
display: 'bubble',
touchUi: false
});
mobiscroll.numpad("#demo-ios-custom", {
theme: 'ios-gray',
display: 'bubble',
touchUi: false
});
mobiscroll.numpad("#demo-material", {
theme: 'material',
themeVariant: 'light',
display: 'bubble',
touchUi: false
});
mobiscroll.numpad("#demo-material-dark", {
theme: 'material',
themeVariant: 'dark',
display: 'bubble',
touchUi: false
});
mobiscroll.numpad("#demo-material-custom", {
theme: 'material-indigo',
display: 'bubble',
touchUi: false
});
mobiscroll.numpad("#demo-windows", {
theme: 'windows',
themeVariant: 'light',
display: 'bubble',
touchUi: false
});
mobiscroll.numpad("#demo-windows-dark", {
theme: 'windows',
themeVariant: 'dark',
display: 'bubble',
touchUi: false
});
mobiscroll.numpad("#demo-windows-custom", {
theme: 'windows-yellow',
display: 'bubble',
touchUi: false
});
mobiscroll.numpad("#demo-mobiscroll", {
theme: 'mobiscroll',
themeVariant: 'light',
display: 'bubble',
touchUi: false
});
mobiscroll.numpad("#demo-mobiscroll-dark", {
theme: 'mobiscroll',
themeVariant: 'dark',
display: 'bubble',
touchUi: false
});
mobiscroll.numpad("#demo-mobiscroll-custom", {
theme: 'mobiscroll-lime',
display: 'bubble',
touchUi: false
});
<div mbsc-form>
<div class="mbsc-grid mbsc-grid-fixed">
<div class="mbsc-row">
<div class="mbsc-col-sm-12 mbsc-col-md-6">
<div class="mbsc-form-group-inset">
<div class="mbsc-form-group-title">iOS Theme</div>
<label>
Light
<input mbsc-input id="demo-ios" placeholder="Please Select..." />
</label>
<label>
Dark
<input mbsc-input id="demo-ios-dark" placeholder="Please Select..." />
</label>
<label>
Custom
<input mbsc-input id="demo-ios-custom" placeholder="Please Select..." />
</label>
</div>
</div>
<div class="mbsc-col-sm-12 mbsc-col-md-6">
<div class="mbsc-form-group-inset">
<div class="mbsc-form-group-title">Material Theme</div>
<label>
Light
<input mbsc-input id="demo-material" placeholder="Please Select..." />
</label>
<label>
Dark
<input mbsc-input id="demo-material-dark" placeholder="Please Select..." />
</label>
<label>
Custom
<input mbsc-input id="demo-material-custom" placeholder="Please Select..." />
</label>
</div>
</div>
</div>
<div class="mbsc-row">
<div class="mbsc-col-sm-12 mbsc-col-md-6">
<div class="mbsc-form-group-inset">
<div class="mbsc-form-group-title">Windows Theme</div>
<label>
Light
<input mbsc-input id="demo-windows" placeholder="Please Select..." />
</label>
<label>
Dark
<input mbsc-input id="demo-windows-dark" placeholder="Please Select..." />
</label>
<label>
Custom
<input mbsc-input id="demo-windows-custom" placeholder="Please Select..." />
</label>
</div>
</div>
<div class="mbsc-col-sm-12 mbsc-col-md-6">
<div class="mbsc-form-group-inset">
<div class="mbsc-form-group-title">Mobiscroll Theme</div>
<label>
Light
<input mbsc-input id="demo-mobiscroll" placeholder="Please Select..." />
</label>
<label>
Dark
<input mbsc-input id="demo-mobiscroll-dark" placeholder="Please Select..." />
</label>
<label>
Custom
<input mbsc-input id="demo-mobiscroll-custom" placeholder="Please Select..." />
</label>
</div>
</div>
</div>
</div>
</div>