1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <script type="text/javascript">
function changeImg(imgNumber) {
var myImages = [
"img/backgrounds/bg_001.jpg",
"img/backgrounds/bg_002.jpg",
"img/backgrounds/bg_003.jpg",
"img/backgrounds/bg_004.jpg",
"img/backgrounds/bg_005.jpg",
"img/backgrounds/bg_006.jpg",
];
var imgShown = document.body.style.backgroundImage;
var newImgNumber =Math.floor(Math.random()*myImages.length);
document.body.style.backgroundImage = 'url('+myImages[newImgNumber]+')';
}
window.onload=changeImg;
</script> |
Partager