This is a little thing I invented whilst reading about the String.fromCodePoint and the respective identity getter. By generating a random number (thanks to Mozilla.org's developer wiki for the code of generating random integer) between the range of the normal text's points (30 - 126), and repeating that a random number of times.
window.setInterval(function(){
title = document.getElementsByTagName("title")[0]
title.innerHTML=""
var m = gI(2,20)
for(i=0;i<m;i++){
title.innerHTML+=String.fromCodePoint(gI(32,126))
}
},20)
Final Notes
I'm on the Mozilla Developer wiki! Nothing big, duy, but I might be!
No comments:
Post a Comment