Comment ajouter un fondu à cela?Comment ajouter un fondu?
$(document).ready(function(){
var myQuotes = new Array();
myQuotes[0] = "All is connected... ";
myQuotes[1] = "The best way";
myQuotes[2] = "Your work is to discover";
myQuotes[2] = "If success";
var myRandom = Math.floor(Math.random()*myQuotes.length);
$('#quoteHome').html(myQuotes[myRandom]);
});