Bonsoir,
J'aimerais rajouter qq phrases à ce code :
Genre :
"text": "bolo"
"text": "bolobo lbbo"
"text": "bolobo blbolbbobl"
mais impossible d'y arriver
Si qq peut m'aider, voici le code au complet :
Merci et bonne soirée,
E.
J'aimerais rajouter qq phrases à ce code :
container.shuffleLetters({
"text": "bolo"
});
Genre :
"text": "bolo"
"text": "bolobo lbbo"
"text": "bolobo blbolbbobl"
mais impossible d'y arriver
Si qq peut m'aider, voici le code au complet :
$(function(){
// container is the DOM element;
// userText is the textbox
var container = $("#container")
userText = $('#userText');
// Shuffle the contents of container
container.shuffleLetters();
// Bind events
userText.click(function () {
userText.val("");
}).bind('keypress',function(e){
if(e.keyCode == 13){
// The return key was pressed
container.shuffleLetters({
"text": userText.val()
});
userText.val("");
}
}).hide();
// Leave a 4 second pause
setTimeout(function(){
// Shuffle the container with custom text
container.shuffleLetters({
"text": "bolo"
});
userText.val().fadeIn();
},4000);
});
Merci et bonne soirée,
E.