I need a carousel that spans the full height and width of the display monitor, scrolling downwards like this. The images inside should fill their parent container while maintaining their aspect ratio. The issue I'm facing is that either I have to provide a fixed height or it will take on the height of the largest image. How can I create a full-screen carousel for every device?
$(document).ready(function() {
$("#my-slider").carousel({
interval: 3000,
pause: false
});
})
.container-fluid {
padding-right: 0px;
padding-left: 0px;
margin-right: 0px;
margin-left: 0px;
}