I want to customize my ng-image-slider in my app so that only one image is displayed at a time, while also ensuring that it remains responsive. Besides adjusting the "imageSize" input and manipulating the width/height of the images, what other options do I have for achieving this?
Below is the code snippet I am currently using:
<ng-image-slider
[images]="imageObject"
[infinite]="true"
[showArrow]="false"
[autoSlide]="1">
</ng-image-slider>
Any suggestions or tips would be greatly appreciated. Thank you!