/ Published in: jQuery
really simple random bg image. Save images starting at 1.jpg. Put in your jquery selector. Etc, etc.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$(document).ready(function(){ bgImageTotal=20; randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1; imgPath=('/my/image/path/'+randomNumber+'.jpg'); $('h1').css('background-image', ('url("'+imgPath+'")')); });