$(document).ready(function (){ $("#slider").bxSlider({ displaySlideQty: 1, moveSlideQty: 1, infiniteLoop: true, prevText: '<', nextText: '>', pager: true, pagerType: 'full' }); var autoFade = $("#autoFade").bxSlider({ mode:"fade", speed: 800, pause: 4000, displaySlideQty: 1, moveSlideQty: 1, infiniteLoop: true, auto:true, controls:false, autoDelay: 4500, onBeforeSlide: function(){ $("#animation").fadeOut(500, function(){ $("#autoFade img:first").attr("src","/assets/images/accueil/01b.jpg"); }); } }); $("#autoFade img").css("left","50%"); /*calcul taille zone text une news*/ var incr = 0; $("#slider .ditto1news").each(function (e){ wrapperHeight = $(this).height(); siblingsWrapperHeight = $(this).siblings().height(); zoneText = $(this).find(".text"); zoneHead = $(this).find(".head"); zoneHeadInnerHeight = zoneHead.innerHeight(); if(wrapperHeight>siblingsWrapperHeight){ if(incr==0){ incr++; $(this).siblings().height(wrapperHeight); } }else{ if(incr>0){ zoneText.height(wrapperHeight-zoneHeadInnerHeight-26); } } }); $("#sectionRight .bx-wrapper").hide(); if($.browser.msie && $.browser.version < 9){ $("#animationMacaron").show(); $("#animationTexte").show(); $("#sectionRight .bx-wrapper").show(); }else{ $("#animationMacaron").show(1500, function(){ $("#animationTexte").show(1500, function(){ $("#sectionRight .bx-wrapper").fadeIn(500, function(){ }); }); }); } });