CSS/Javascript Tips
CSS/Javascript Tips
Out of context: Reply #4
- Started
- Last post
- 10 Responses
- bokswagen0
try this and just like acescence said...attach it to the bottom of your page, to make sure the body tag loads first before the script runs.
// JavaScript Document
var banner= new Array()
banner[0]="img1.jpg"
banner[1]="img2.jpg"
banner[2]="img3.jpg"
banner[3]="img4.jpg"
banner[4]="img5.jpg"var random=Math.floor(5*Math.random...
document.write("<style>");
document.write("body {");
document.write(' background:url("' + banner[random] + '") repeat; background-attachment:fixed;back... center;');
document.write(" }");
document.write("</style>");