Sujet fermé
Note de ce sujet :
  • Moyenne : 0 (0 vote(s))
  • 1
  • 2
  • 3
  • 4
  • 5

[RESOLU] Jquery + {Gallery}
#3

Bonjour j'ai fait une recherche sur internet et voici comment faut solutionner le problème
Il faut ajouter une variable noconflict


L'ancien code
Code :
function formatText(index, panel) {
return index + "";
}

$(function () {
    
$('.anythingSlider').anythingSlider({
easing: "easeInOutExpo",  
autoPlay: true,                
delay: 3000,                
startStopped: false,  
animationTime: 600,
hashTags: true,      
buildNavigation: true,    
pauseOnHover: true,  
startText: "Jouer diapo",    
stopText: "Arrêter diapo",          
navigationFormatter: formatText    
        });
        
        
    });
Le nouveau code
Code :
var $j = jQuery.noConflict();  

function formatText(index, panel) {
return index + "";
}

$j(function () {
    
$j('.anythingSlider').anythingSlider({
easing: "easeInOutExpo",
autoPlay: true,
delay: 3000,
startStopped: false,
animationTime: 600,
hashTags: true,
buildNavigation: true,
pauseOnHover: true,
startText: "Jouer diapo",
stopText: "Arrêter diapo",
navigationFormatter: formatText
});
        
        
    });
Sujet fermé


Messages dans ce sujet

Atteindre :


Utilisateur(s) parcourant ce sujet : 1 visiteur(s)