DevExtreme React - Overview
The Gallery is a widget that displays a collection of images in a carousel. The widget is supplied with various navigation controls that allow a user to switch between images.
The following code adds the Gallery widget to your page. The simplest configuration of the widget requires only a dataSource and height to be specified.
jQuery
HTML
JavaScript
<div id="galleryContainer"></div>
$(function () {
$("#galleryContainer").dxGallery({
dataSource: [
"https://js.devexpress.com/Content/images/doc/19_1/PhoneJS/person1.png",
"https://js.devexpress.com/Content/images/doc/19_1/PhoneJS/person2.png",
"https://js.devexpress.com/Content/images/doc/19_1/PhoneJS/person3.png",
"https://js.devexpress.com/Content/images/doc/19_1/PhoneJS/person4.png"
],
height: 300
});
});Angular
HTML
TypeScript
<dx-gallery
[dataSource]="galleryDataSource"
[height]="300">
</dx-gallery>
import { DxGalleryModule } from "devextreme-angular";
// ...
export class AppComponent {
galleryDataSource = [
"https://js.devexpress.com/Content/images/doc/19_1/PhoneJS/person1.png",
"https://js.devexpress.com/Content/images/doc/19_1/PhoneJS/person2.png",
"https://js.devexpress.com/Content/images/doc/19_1/PhoneJS/person3.png",
"https://js.devexpress.com/Content/images/doc/19_1/PhoneJS/person4.png"
];
}
@NgModule({
imports: [
// ...
DxGalleryModule
],
// ...
})See Also
- Configure a Widget: Angular | Vue | React | jQuery | AngularJS | Knockout | ASP.NET MVC 5 | ASP.NET Core
- Gallery - Switch Between Images
- Gallery - Set the Initial Image
- Gallery - Enable the Slideshow
- Gallery - Animate the Image Change
- Gallery - Transform and Combine Images
- Gallery - Customize Item Appearance
- Gallery Demos
- Gallery API Reference
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.