$(document).ready(function() { var nb_actus = $('.actu_addon_fondu_content').length; for(j = 0;j < nb_actus; j++){ $('.actu_addon_fondu_liste').prepend('
'); } var nb_actus2 = $('.actu_addon_fondu_content').length + 1; var posActu = nb_actus2; var lectureAuto = true; var test = false; var tempsAnimation = 1500; var tempsAttente = 5000; $('#choix-'+posActu).css('background','url(http://www.dentalhitec.com/web3/lisa-modules/actu_addon_fondu/themes/defaut/images/liste_selectionne.jpg) center no-repeat'); if(lectureAuto) { startAnim(); } function startAnim() { timerAnim = setInterval(lectureAutomatique, tempsAttente); } function lectureAutomatique() { if(posActu == 2) { $('#actu-'+ nb_actus2).fadeIn(tempsAnimation, function(){ $('.actu_addon_fondu_content').show(); $('#choix-'+ nb_actus2).siblings().css('background','url(http://www.dentalhitec.com/web3/lisa-modules/actu_addon_fondu/themes/defaut/images/liste_choix.jpg) center no-repeat'); $('#choix-'+ nb_actus2).css('background','url(http://www.dentalhitec.com/web3/lisa-modules/actu_addon_fondu/themes/defaut/images/liste_selectionne.jpg) center no-repeat'); }); posActu = nb_actus2; } else { $('#actu-'+posActu).fadeOut(tempsAnimation, function(){ posActu--; $('#choix-'+posActu).siblings().css('background','url(http://www.dentalhitec.com/web3/lisa-modules/actu_addon_fondu/themes/defaut/images/liste_choix.jpg) center no-repeat'); $('#choix-'+posActu).css('background','url(http://www.dentalhitec.com/web3/lisa-modules/actu_addon_fondu/themes/defaut/images/liste_selectionne.jpg) center no-repeat'); }); } } $('.actu_addon_fondu_choix').bind('click', function(){ var actu_choisie = ($(this).attr('id')).substring(6); if(actu_choisie < posActu) { for(k = actu_choisie; k < nb_actus2+1; k++) { if(k != actu_choisie){ $('#actu-' + k).fadeOut(tempsAnimation); } } } $('#actu-' + actu_choisie).fadeIn(tempsAnimation); posActu = actu_choisie; $(this).siblings().css('background','url(http://www.dentalhitec.com/web3/lisa-modules/actu_addon_fondu/themes/defaut/images/liste_choix.jpg) center no-repeat'); $(this).css('background','url(http://www.dentalhitec.com/web3/lisa-modules/actu_addon_fondu/themes/defaut/images/liste_selectionne.jpg) center no-repeat'); clearInterval(timerAnim); }); });