React Image
Image for React
Image for React
Image for React
Learn moreImage scroller component for images, icons that can be combined with a label or text.
Compatible with mobiscroll forms, custom inputs and more. Use it on any touch screen, no matter if small or large.
Shipping with useful features for a refined UX, including:
- Usage on mobile and tablet
- Use it with custom images or icons
- Show labels or any text
- Disabled values for restricting selection
- Circular wheels
- Multiple theme support
- Modal, popup and inline display mores
- RTL Support
- Full localization
Image scroller demos available for other frameworks.
Viewing demos & code for
Image - With text
import mobiscroll from '@mobiscroll/react';
import '@mobiscroll/react/dist/css/mobiscroll.min.css';
class App extends React.Component {
render() {
return (
<div>
<mobiscroll.Image
ref="image"
theme=""
themeVariant=""
lang=""
placeholder="Please Select..."
labels={['Make']}
enhance={true}
defaultValue={['Citroen']}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
<li data-val="Citroen">
<img src="https://img.mobiscroll.com/demos/Citroen_logo.png" />
<p>Citroen</p>
</li>
<li data-val="Dacia">
<img src="https://img.mobiscroll.com/demos/Dacia_logo.png" />
<p>Dacia</p>
</li>
<li data-val="Ferrari">
<img src="https://img.mobiscroll.com/demos/ferrari_logo.png" />
<p>Ferrari</p>
</li>
<li data-val="Ford">
<img src="https://img.mobiscroll.com/demos/Ford_logo.png" />
<p>Ford</p>
</li>
<li data-val="Jaguar">
<img src="https://img.mobiscroll.com/demos/Jaguar_logo.png" />
<p>Jaguar</p>
</li>
<li data-val="Lotus">
<img src="https://img.mobiscroll.com/demos/lotus_logo.png" />
<p>Lotus</p>
</li>
<li data-val="Mercedes">
<img src="https://img.mobiscroll.com/demos/mercedes_logo.png" />
<p>Mercedes</p>
</li>
<li data-val="Opel">
<img src="https://img.mobiscroll.com/demos/opel_logo.png" />
<p>Opel</p>
</li>
<li data-val="Porsche">
<img src="https://img.mobiscroll.com/demos/Porsche_logo.png" />
<p>Porsche</p>
</li>
<li data-val="Renault">
<img src="https://img.mobiscroll.com/demos/renault_logo.png" />
<p>Renault</p>
</li>
<li data-val="Seat">
<img src="https://img.mobiscroll.com/demos/Seat_logo.png" />
<p>Seat</p>
</li>
<li data-val="Volkswagen">
<img src="https://img.mobiscroll.com/demos/volkswagen_logo.png" />
<p>Volkswagen</p>
</li>
</mobiscroll.Image>
</div>
);
}
}
<div id="content"></div>
Image - Image only
import mobiscroll from '@mobiscroll/react';
import '@mobiscroll/react/dist/css/mobiscroll.min.css';
class App extends React.Component {
render() {
return (
<div>
<mobiscroll.Image
ref="image"
theme=""
themeVariant=""
lang=""
cssClass="mbsc-sc md-image-fruit"
labels={['Select Favorite Fruit']}
placeholder="Please Select..."
width={200}
enhance={true}
>
<li data-val="1">
<img src="https://img.mobiscroll.com/demos/fruit-1.png" />
</li>
<li data-val="2">
<img src="https://img.mobiscroll.com/demos/fruit-2.png" />
</li>
<li data-val="3">
<img src="https://img.mobiscroll.com/demos/fruit-3.png" />
</li>
<li data-val="4">
<img src="https://img.mobiscroll.com/demos/fruit-4.png" />
</li>
<li data-val="5">
<img src="https://img.mobiscroll.com/demos/fruit-5.png" />
</li>
<li data-val="6">
<img src="https://img.mobiscroll.com/demos/fruit-1.png" />
</li>
<li data-val="7">
<img src="https://img.mobiscroll.com/demos/fruit-2.png" />
</li>
<li data-val="8">
<img src="https://img.mobiscroll.com/demos/fruit-3.png" />
</li>
<li data-val="9">
<img src="https://img.mobiscroll.com/demos/fruit-4.png" />
</li>
<li data-val="10">
<img src="https://img.mobiscroll.com/demos/fruit-5.png" />
</li>
<li data-val="11">
<img src="https://img.mobiscroll.com/demos/fruit-1.png" />
</li>
<li data-val="12">
<img src="https://img.mobiscroll.com/demos/fruit-2.png" />
</li>
<li data-val="13">
<img src="https://img.mobiscroll.com/demos/fruit-3.png" />
</li>
<li data-val="14">
<img src="https://img.mobiscroll.com/demos/fruit-4.png" />
</li>
<li data-val="15">
<img src="https://img.mobiscroll.com/demos/fruit-5.png" />
</li>
<li data-val="16">
<img src="https://img.mobiscroll.com/demos/fruit-1.png" />
</li>
<li data-val="17">
<img src="https://img.mobiscroll.com/demos/fruit-2.png" />
</li>
<li data-val="18">
<img src="https://img.mobiscroll.com/demos/fruit-3.png" />
</li>
<li data-val="19">
<img src="https://img.mobiscroll.com/demos/fruit-4.png" />
</li>
<li data-val="20">
<img src="https://img.mobiscroll.com/demos/fruit-5.png" />
</li>
</mobiscroll.Image>
</div>
);
}
}
<div id="content"></div>
.md-image-fruit .dw-ul .dw-li .mbsc-img-w {
text-align: center;
}
.md-image-fruit .mbsc-ltr .mbsc-img-w {
text-align: center;
}
.md-image-fruit .mbsc-sc-whl-sc .mbsc-sc-itm .mbsc-img-w {
text-align: center;
}
Image - Icon and Text
import mobiscroll from '@mobiscroll/react';
import '@mobiscroll/react/dist/css/mobiscroll.min.css';
class App extends React.Component {
render() {
return (
<div>
<mobiscroll.Image
ref="image"
theme=""
themeVariant=""
lang=""
placeholder="Please Select..."
showLabel={false}
enhance={true}
>
<li data-val="Share" data-icon="share">
<p>Share</p>
</li>
<li data-val="Bookmark" data-icon="star">
<p>Bookmark</p>
</li>
<li data-val="Flag" data-icon="flag">
<p>Flag</p>
</li>
<li data-val="Tag" data-icon="tag">
<p>Tag</p>
</li>
<li data-val="Download" data-icon="download">
<p>Download</p>
</li>
<li data-val="Delete" data-icon="remove">
<p>Delete</p>
</li>
</mobiscroll.Image>
</div>
);
}
}
<div id="content"></div>
Image - Event handlers
EVENTS FIRED:
import mobiscroll from '@mobiscroll/react';
import '@mobiscroll/react/dist/css/mobiscroll.min.css';
class App extends React.Component {
onInit = (event, inst) => {
// Your custom event handler goes here
}
onMarkupReady = (event, inst) => {
// Your custom event handler goes here
}
onBeforeShow = (event, inst) => {
// Your custom event handler goes here
}
onPosition = (event, inst) => {
// Your custom event handler goes here
}
onShow = (event, inst) => {
// Your custom event handler goes here
}
onSet = (event, inst) => {
// Your custom event handler goes here
}
onItemTap = (event, inst) => {
// Your custom event handler goes here
}
onDestroy = (event, inst) => {
// Your custom event handler goes here
}
onClose = (event, inst) => {
// Your custom event handler goes here
}
onCancel = (event, inst) => {
// Your custom event handler goes here
}
onBeforeClose = (event, inst) => {
// Your custom event handler goes here
}
onClear = (event, inst) => {
// Your custom event handler goes here
}
onChange = (event, inst) => {
// Your custom event handler goes here
}
render() {
return (
<div>
<mobiscroll.Image
ref="image"
theme=""
themeVariant=""
lang=""
cssClass="mbsc-sc md-image-fruit"
placeholder="Please Select..."
enhance={true}
onInit={this.onInit}
onMarkupReady={this.onMarkupReady}
onBeforeShow={this.onBeforeShow}
onPosition={this.onPosition}
onShow={this.onShow}
onSet={this.onSet}
onItemTap={this.onItemTap}
onDestroy={this.onDestroy}
onClose={this.onClose}
onCancel={this.onCancel}
onBeforeClose={this.onBeforeClose}
onClear={this.onClear}
onChange={this.onChange}
>
<li data-val="1">
<img src="https://img.mobiscroll.com/demos/fruit-1.png" />
</li>
<li data-val="2">
<img src="https://img.mobiscroll.com/demos/fruit-2.png" />
</li>
<li data-val="3">
<img src="https://img.mobiscroll.com/demos/fruit-3.png" />
</li>
<li data-val="4">
<img src="https://img.mobiscroll.com/demos/fruit-4.png" />
</li>
<li data-val="5">
<img src="https://img.mobiscroll.com/demos/fruit-5.png" />
</li>
</mobiscroll.Image>
</div>
);
}
}
<div id="content"></div>
.md-image-fruit .dw-ul .dw-li .mbsc-img-w {
text-align: center;
}
.md-image-fruit .mbsc-ltr .mbsc-img-w {
text-align: center;
}
.md-image-fruit .mbsc-sc-whl-sc .mbsc-sc-itm .mbsc-img-w {
text-align: center;
}
Image - Display modes
import mobiscroll from '@mobiscroll/react';
import '@mobiscroll/react/dist/css/mobiscroll.min.css';
mobiscroll.settings = {
lang: '',
theme: '',
themeVariant: ''
};
class App extends React.Component {
refreshForm = () => {
if(this.refs.form != undefined) {
this.refs.form.instance.refresh();
}
}
render() {
return (
<mobiscroll.Form ref="form">
<mobiscroll.FormGroup>
<mobiscroll.FormGroupTitle>Try different display modes</mobiscroll.FormGroupTitle>
<label>
Bottom
<mobiscroll.Image
display="bottom"
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Top
<mobiscroll.Image
display="top"
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Center
<mobiscroll.Image
display="center"
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Bubble
<mobiscroll.Image
display="bubble"
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
</mobiscroll.FormGroup>
<mobiscroll.FormGroup className="mbsc-padding">
<p className="mbsc-thin">With inline display you can embed the Image component in almost any markup or form.</p>
</mobiscroll.FormGroup>
<mobiscroll.FormGroup>
<mobiscroll.FormGroupTitle>Embedded image scroller</mobiscroll.FormGroupTitle>
<mobiscroll.Image
type="hidden"
display="inline"
layout="liquid"
enhance={true}
showInput={false}
placeholder="Please Select..."
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</mobiscroll.FormGroup>
</mobiscroll.Form>
);
}
}
<div id="content"></div>
Image - Desktop
import mobiscroll from '@mobiscroll/react';
import '@mobiscroll/react/dist/css/mobiscroll.min.css';
mobiscroll.settings = {
lang: '',
theme: '',
themeVariant: ''
};
class App extends React.Component {
refreshForm = () => {
if(this.refs.form != undefined) {
this.refs.form.instance.refresh();
}
}
render() {
return (
<mobiscroll.Form ref="form">
<div className="mbsc-grid">
<div className="mbsc-row mbsc-justify-content-center">
<div className="mbsc-col-sm-9 mbsc-col-md-7 mbsc-col-xl-5">
<mobiscroll.FormGroup inset>
<mobiscroll.FormGroupTitle>Pop-up positioning</mobiscroll.FormGroupTitle>
<label>
Top
<mobiscroll.Image
display="top"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Bottom
<mobiscroll.Image
display="bottom"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Anchored
<mobiscroll.Image
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Center
<mobiscroll.Image
display="center"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
</mobiscroll.FormGroup>
</div>
</div>
<div className="mbsc-row mbsc-justify-content-center">
<div className="mbsc-col-sm-9 mbsc-col-md-7 mbsc-col-xl-5">
<mobiscroll.FormGroup inset>
<mobiscroll.FormGroupTitle>With buttons</mobiscroll.FormGroupTitle>
<label>
Set button
<mobiscroll.Image
display="center"
touchUi={false}
enhance={true}
buttons={['set']}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Set/Cancel
<mobiscroll.Image
display="center"
touchUi={false}
enhance={true}
buttons={['set', 'cancel']}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
</mobiscroll.FormGroup>
</div>
</div>
</div>
</mobiscroll.Form>
);
}
}
<div id="content"></div>
Image - Theming capabilities
The look and feel of the image can be deeply customized. There are four levels of customization:
- Base themes: Choose between
Mobiscroll
,iOS
,Android Material
andWindows
. - Light or dark: Every theme has a
light
anddark
variant. Setting thethemeVariant
to'auto'
will switch based on system settings. - Custom themes: Use the theme builder to customize the colors and make it match your brand.
- Custom CSS: If you need further customization, the sky is the limit with CSS overrides.
You can also see how every example looks by changing the theme in the floating action bar on the right side.
import mobiscroll from '@mobiscroll/react';
import '@mobiscroll/react/dist/css/mobiscroll.min.css';
mobiscroll.settings = {
lang: '',
theme: '',
themeVariant: ''
};
class App extends React.Component {
refreshForm = () => {
if(this.refs.form != undefined) {
this.refs.form.instance.refresh();
}
}
render () {
return (
<mobiscroll.Form>
<div className="mbsc-grid mbsc-grid-fixed">
<div className="mbsc-row">
<div className="mbsc-col-sm-12 mbsc-col-md-6">
<mobiscroll.FormGroup inset>
<mobiscroll.FormGroupTitle>iOS Theme</mobiscroll.FormGroupTitle>
<label>
Light
<mobiscroll.Image
theme="ios"
themeVariant="light"
display="bubble"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Dark
<mobiscroll.Image
theme="ios"
themeVariant="dark"
display="bubble"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Custom
<mobiscroll.Image
theme="ios-gray"
display="bubble"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
</mobiscroll.FormGroup>
</div>
<div className="mbsc-col-sm-12 mbsc-col-md-6">
<mobiscroll.FormGroup inset>
<mobiscroll.FormGroupTitle>Material Theme</mobiscroll.FormGroupTitle>
<label>
Light
<mobiscroll.Image
theme="material"
themeVariant="light"
display="bubble"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Dark
<mobiscroll.Image
theme="material"
themeVariant="dark"
display="bubble"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Custom
<mobiscroll.Image
theme="material-indigo"
display="bubble"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
</mobiscroll.FormGroup>
</div>
</div>
<div className="mbsc-row">
<div className="mbsc-col-sm-12 mbsc-col-md-6">
<mobiscroll.FormGroup inset>
<mobiscroll.FormGroupTitle>Windows Theme</mobiscroll.FormGroupTitle>
<label>
Light
<mobiscroll.Image
theme="windows"
themeVariant="light"
display="bubble"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Dark
<mobiscroll.Image
theme="windows"
themeVariant="dark"
display="bubble"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Custom
<mobiscroll.Image
theme="windows-yellow"
display="bubble"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
</mobiscroll.FormGroup>
</div>
<div className="mbsc-col-sm-12 mbsc-col-md-6">
<mobiscroll.FormGroup inset>
<mobiscroll.FormGroupTitle>Mobiscroll Theme</mobiscroll.FormGroupTitle>
<label>
Light
<mobiscroll.Image
theme="mobiscroll"
themeVariant="light"
display="bubble"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Dark
<mobiscroll.Image
theme="mobiscroll"
themeVariant="dark"
display="bubble"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
<label>
Custom
<mobiscroll.Image
theme="mobiscroll-lime"
display="bubble"
touchUi={false}
enhance={true}
placeholder="Please Select..."
onInit={this.refreshForm}
>
<li data-val="Audi">
<img src="https://img.mobiscroll.com/demos/Audi_logo.png" />
<p>Audi</p>
</li>
<li data-val="BMW">
<img src="https://img.mobiscroll.com/demos/BMW_logo.png" />
<p>BMW</p>
</li>
<li data-val="Chevrolet">
<img src="https://img.mobiscroll.com/demos/Chevrolet_logo.png" />
<p>Chevrolet</p>
</li>
</mobiscroll.Image>
</label>
</mobiscroll.FormGroup>
</div>
</div>
</div>
</mobiscroll.Form>
);
}
}
<div id="content"></div>
Looking for something you didn't see or have a sales question?
Ask us about it, we're here to help.
Component license
Purchase component licenses if you are looking for specific funcionality.
All
Framework license
Get all 36 components, including
Framework license
Get all 36 components, including
- Use it when building with plain and simple JS
- Compatible with vanilla JS app or frameworks like Vue
- Royalty-free commercial usage
- Technical support is included with the license
- Use it with jQuery and jQuery Mobile
- Enjoy the familiar API if you already use jQuery
- Royalty-free commercial usage
- Technical support is included with the license
- Use it with Angular JS and Ionic 1
- For web and mobile apps based on Angular 1.x
- Royalty-free commercial usage
- Technical support is included with the license
- Use it with Angular and Ionic 2/3/4
- Visual Studio and VS Code integration
- Royalty-free commercial usage
- Technical support is included with the license
- Use it when building with React JS
- Collection of UI components for web and mobile
- Royalty-free commercial usage
- Technical support is included with the license
Framework license
Select the development framework you are using. Get all 36 components with the license.
- Use it when building with plain and simple JS
- Compatible with vanilla JS app or frameworks like Vue
- Royalty-free commercial usage
- Technical support is included with the license
- Use it with jQuery and jQuery Mobile
- Enjoy the familiar API if you already use jQuery
- Royalty-free commercial usage
- Technical support is included with the license
- Use it with Angular JS and Ionic 1
- For web and mobile apps based on Angular 1.x
- Royalty-free commercial usage
- Technical support is included with the license
- Use it with Angular and Ionic 2/3/4
- Visual Studio and VS Code integration
- Royalty-free commercial usage
- Technical support is included with the license
- Use it when building with React JS
- Collection of UI components for web and mobile
- Royalty-free commercial usage
- Technical support is included with the license
Select the framework you are interested in
Use Javascript when building with plain and simple JS.
Use jQuery when you have jQuery already included or if you are building with jQuery Mobile.
Use AngularJS when building with Angular 1.x or Ionic 1.
Use Angular when building with Angular 2/4/5/6/7/8/9 or Ionic 2/3/4.
Use it when you are building your app or website with React.
Do you need additional support seats?
The license comes with one support seat. ( +$100/seat )
Add the source code?
What framework are you using?
We have to set you up with a trial for this to run 👍
Step 1.Install the Mobiscroll CLI from npm
$ npm install -g @mobiscroll/cli
The CLI makes configuring your apps super simple 👍
Step 2.Run the following command in the root folder of your Ionic project
$ mobiscroll config ionic
$ mobiscroll config ionic --lite
You will be prompted to log in with your mobiscroll account. Set your password here
Create an Ionic 3 & Mobiscroll starter with the CLI:
Run this command for Ionic 4 & Mobiscroll starter:
Step 3.Copy the code into your app.
Step 4.Run ionic serve in the root folder of your app 🎉
$ ionic serve
And voilà, everything should be running smoothly.
Step 1.Install the Mobiscroll CLI from npm
$ npm install -g @mobiscroll/cli
The CLI makes configuring your apps super simple 👍
Step 2.Run the following command in the root folder of your Angular project
$ mobiscroll config angular
$ mobiscroll config angular --lite
You will be prompted to log in with your mobiscroll account. Set your password here
Step 3.Copy the code into your app. HTML goes into the markup, TS into Typescript.
Step 4.Run ng serve in the root folder of your app 🎉
$ ng serve
And voilà, everything should be running smoothly.
Extract the zip file and run the project like any Ionic app. Make sure to have Ionic CLI installed and open the terminal in the app root folder.
$ npm install
$ ionic serve
Let us know if we can help and enjoy!
Your password has been changed!
Everything is set up so that you can dig in right away and start exploring.
We have set up a trial so that you can try the demos locally.
Extract the zip file and open the demo in your favorite browser.
To install Mobiscroll in your project
follow instructions from this page.
Let us know if we can help and enjoy! 👍
Please extract the zip file and run the project like any Angular CLI app.
Make sure to have the Angular CLI installed.
For installation and usage, extract the zip file and open a terminal window and follow these steps.
$ npm install
$ ng serve --open
Let us know if we can help and enjoy! 👍
Everything is set up so that you can dig in right away and start exploring.
We have set up a trial so that you can try the demos locally.
The easiest way to get started is to follow the installation steps and by
grabbing the code directly from the demo page. Let us know if we can help and enjoy!
You'll find a fully functional Kitchen-sink Ionic app in the zip file.
Everything is set up so that you can dig in right away and start exploring.
We have set up a trial so that you can try the demos locally.
The demos are using Babel's in-browser ES6 and JSX transformer.
Extract the zip file and open the demo in your browser. To install Mobiscroll in your project
follow instructions from this page.
Let us know if we can help and enjoy! 👍