I've tried several tutorial on the web and none seems to work properly. What I'm trying to do is quite simple I think:
I have 9 different .jpg images that I need to randomly show up on page load - to be background. This should be fairly simple right?
Thanks,
EDIT (Sorry, forgot to attach the code - found in the web):
$(document).ready(function(){
bgImageTotal=9;
randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1;
imgPath=('../img/bg/'+randomNumber+'.jpg');
$('body').css('background-image', ('url("'+imgPath+'")'));
});
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…