code for jayson

setInterval(function() { 
    var x = getRandomInt(20)+10;
    j('*').animate( {
        "font-size":newsize
    },2000);
}, 1000);

function getRandomInt(max) {
  return Math.floor(Math.random() * Math.floor(max));
}

Comments are closed.