1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| (function( $ ){
/* AUTRE FUNCTION
****/
/* Déroulement Photo ****/
$.fn.photoScroll = function(options) {
var config = { leftArrow : '#leftArrow',
rightArrow : '#rightArrow',
photoSlider : '#photoSlider',
photoUL : '#photoUL',
scrollWidth : 150,
scrollSpeed : 300 }
if (options){ $.extend(config, options); }
$(config.leftArrow).on({'click': function() {
var pos = ($(config.photoSlider).scrollLeft())?(Math.round(($(config.photoSlider).scrollLeft()/config.scrollWidth))*config.scrollWidth):0;
$(config.photoSlider).stop(true,true).animate({scrollLeft:( pos - config.scrollWidth)+'px'}, config.scrollSpeed);
}
});
$(config.rightArrow).on({'click': function() {
var pos = ($(config.photoSlider).scrollLeft())?(Math.round(($(config.photoSlider).scrollLeft()/config.scrollWidth))*config.scrollWidth):0;
$(config.photoSlider).stop().animate({scrollLeft: (pos+config.scrollWidth)+'px'}, config.scrollSpeed);
}
});
}
})( jQuery ); |
Partager