jssor fixed pixel dimensions requirement

71 Views Asked by At

What is the rational behind jssor to require all fixed dimensions in pixel? This could be clearly more user friendly if jssor library gets parent dimensions from available JS api. Often we would like something to be relative to the parent without dealing with scaling and such. Outer and inner container report problems if any value is not in pixels. This is really the only and biggest issue for me in otherwise great library. It should be more responsive by nature, without manual scaling methods.

1

There are 1 best solutions below

2
On

The responsive code makes the slider to fit any size. It will fit parent width in following manner,

//responsive code begin
//you can remove responsive code if you don't want the slider scales
//while window resizes
function ScaleSlider() {
    var parentWidth = $('#slider1_container').parent().width();
    if (parentWidth) {
        jssor_slider1.$ScaleWidth(parentWidth);
    }
    else
        window.setTimeout(ScaleSlider, 30);
}
//Scale slider after document ready
ScaleSlider();

//Scale slider while window load/resize/orientationchange.
$(window).bind("load", ScaleSlider);
$(window).bind("resize", ScaleSlider);
$(window).bind("orientationchange", ScaleSlider);
//responsive code end