Lines Matching +full:width +(+path:plugin +path:slider) -(+path:plugin +path:slider +path:lang)

106 		var windowWidth = $(window).width();
138 // calculate the min / max width thresholds based on min / max number of slides
188 // set el to a massive width, to hold any needed slides
191width: slider.settings.mode == 'horizontal' ? (slider.children.length * 100 + 215) + '%' : 'auto',
204 width: '100%',
223 // apply the calculated width after the float is applied to prevent scrollbar interference
224 slider.children.css('width', getSlideWidth());
292 // Check if image has width, that means it is loaded already.
295 if (img.width && !loaded){
397 * Returns the calculated width to be used for the outer wrapper / viewport
400 var width = '100%';
403width = (slider.settings.maxSlides * slider.settings.slideWidth) + ((slider.settings.maxSlides - 1…
405 width = slider.settings.slideWidth;
408 return width;
412 * Returns the calculated width to be applied to each slide
415 // start with any user-supplied slide width
417 // get the current viewport width
418 var wrapWidth = slider.viewport.width();
419 // if slide width was not supplied, or is larger than the viewport use the viewport width
424 // if carousel, use the thresholds to determine the width
442 if(slider.viewport.width() < slider.minThreshold){
445 }else if(slider.viewport.width() > slider.maxThreshold){
447 // if viewport is between min / max thresholds, divide viewport width by first child width
449 var childWidth = slider.children.first().width();
450 slidesShowing = Math.floor(slider.viewport.width() / childWidth);
509 … setPositionProperty(-(position.left - (slider.viewport.width() - lastChild.width())), 'reset', 0);
933 // calculate the total width of children (used to calculate the speed ratio)
1092 var windowWidthNew = $(window).width();
1179 moveBy = slider.viewport.width() - lastChild.outerWidth();