$(() => {
const galleryWidget = $('#gallery').dxGallery({
dataSource: gallery,
height: 300,
loop: true,
slideshowDelay: 2000,
showNavButtons: true,
showIndicator: true,
}).dxGallery('instance');
$('#useLoop').dxCheckBox({
value: true,
text: 'Loop mode',
onValueChanged(data) {
galleryWidget.option('loop', data.value);
},
});
$('#slideShow').dxCheckBox({
value: true,
text: 'Slide show',
onValueChanged(data) {
galleryWidget.option('slideshowDelay', data.value ? 2000 : 0);
},
});
$('#showNavButtons').dxCheckBox({
value: true,
text: 'Navigation buttons',
onValueChanged(data) {
galleryWidget.option('showNavButtons', data.value);
},
});
$('#showIndicator').dxCheckBox({
value: true,
text: 'Indicator',
onValueChanged(data) {
galleryWidget.option('showIndicator', data.value);
},
});
});
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/23.1.5/css/dx.light.css" />
<script src="https://cdn3.devexpress.com/jslib/23.1.5/js/dx.all.js"></script>
<script src="data.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="index.js"></script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div class="widget-container">
<div id="gallery"></div>
</div>
<div class="options">
<div class="caption">Options</div>
<div class="option">
<div id="useLoop"></div>
</div>
<div class="option">
<div id="slideShow"></div>
</div>
<div class="option">
<div id="showNavButtons"></div>
</div>
<div class="option">
<div id="showIndicator"></div>
</div>
</div>
</div>
</body>
</html>
.widget-container {
margin-right: 240px;
}
#gallery {
margin: auto;
max-width: 450px;
}
.options {
padding: 20px;
position: absolute;
bottom: 0;
right: 0;
width: 180px;
top: 0;
background-color: rgba(191, 191, 191, 0.15);
}
.caption {
font-size: 18px;
font-weight: 500;
}
.option {
margin-top: 10px;
}
const gallery = [
'../../../../images/gallery/1.jpg',
'../../../../images/gallery/2.jpg',
'../../../../images/gallery/3.jpg',
'../../../../images/gallery/4.jpg',
'../../../../images/gallery/5.jpg',
'../../../../images/gallery/6.jpg',
'../../../../images/gallery/7.jpg',
'../../../../images/gallery/8.jpg',
'../../../../images/gallery/9.jpg',
];