Background change
var index = 0;
function changeColors(){
var colors = ["yellow","red","green","orange","purple","blue"];
document.getElementsByTagName("body")[0];
style.background = colors[index++];
if(index > colors.length - 1 )
index = 0;
}
var index = 0;
function changeColors(){
var colors = ["yellow","red","green","orange","purple","blue"];
document.getElementsByTagName("body")[0];
style.background = colors[index++];
if(index > colors.length - 1 )
index = 0;
}
Comments
Post a Comment