const DemoApp = angular.module('DemoApp', ['dx']);
DemoApp.controller('DemoController', ($scope) => {
$scope.loop = true;
$scope.slideShow = true;
$scope.showNavButtons = true;
$scope.showIndicator = true;
$scope.slideshowDelay = 2000;
$scope.galleryOptions = {
dataSource: gallery,
height: 300,
bindingOptions: {
slideshowDelay: 'slideshowDelay',
loop: 'loop',
showNavButtons: 'showNavButtons',
showIndicator: 'showIndicator',
},
};
$scope.$watch('slideShow', (newValue) => {
$scope.slideshowDelay = newValue ? 2000 : 0;
});
});
<!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://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
<script>window.angular || document.write(decodeURIComponent('%3Cscript src="js/angular.min.js"%3E%3C/script%3E'))</script>
<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" ng-app="DemoApp" ng-controller="DemoController">
<div class="widget-container">
<div id="gallery" dx-gallery="galleryOptions"></div>
</div>
<div class="options">
<div class="caption">Options</div>
<div class="option">
<div
dx-check-box="{
text: 'Loop mode',
bindingOptions: {
value: 'loop'
}
}"
></div>
</div>
<div class="option">
<div
dx-check-box="{
text: 'Slide show',
bindingOptions: {
value: 'slideShow'
}
}"
></div>
</div>
<div class="option">
<div
dx-check-box="{
text: 'Navigation buttons',
bindingOptions: {
value: 'showNavButtons'
}
}"
></div>
</div>
<div class="option">
<div
dx-check-box="{
text: 'Indicator',
bindingOptions: {
value: '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',
];