You need to make a slider with a height equal to the width of the screen. I make up joomla, tried a bunch of sliders for joomla, none of them came up. I am satisfied with the standard slider bootstrap 2, I decided to add it to the page. In order to change the height of the slider there is a script on jQuery:
<script type="text/javascript"> $( function () { $('.carousel').carousel({interval: 4000, pause: 'none'}); setInterval( function () { var window_height = $(window).height(); $('#myCarousel').height(window_height); }, 250 ); } ); </script> The code does not work without the bootstrap.min.js library. When you connect this library, the code works, but the menu in Joomla starts to work poorly, so the question is how to do the same without jQuery in Javascript?