use the following code for a full screen slider,
//responsive code begin //you can remove responsive code if you don't want the slider scales while window resizes function ScaleSlider() { var windowWidth = $(window).width(); if (windowWidth) { var windowHeight = $(window).height(); var originalWidth = jssor_slider1.$OriginalWidth(); var originalHeight = jssor_slider1.$OriginalHeight(); var scaleWidth = windowWidth; if (originalWidth / windowWidth > originalHeight / windowHeight) { scaleWidth = Math.ceil(windowHeight / originalHeight * originalWidth); } jssor_slider1.$ScaleWidth(scaleWidth); } else window.setTimeout(ScaleSlider, 30); } ScaleSlider(); $(window).bind("load", ScaleSlider); $(window).bind("resize", ScaleSlider); $(window).bind("orientationchange", ScaleSlider); //responsive code end
and wrap the slider container
<div style="position: relative; width: 100%; overflow: hidden;"> <div style="position: relative; left: 50%; width: 5000px; text-align: center; margin-left: -2500px;"> <div id="slider1_container" style="...margin: 0 auto;..." ...> </div> </div> </div>
Please visit the Full Screen Source Slider .
jssor
source share