Saturday, 29 August 2015

Add various color in various pages WORDPRESS

--> Add this code in custom.js

function scan() {
var images = ['#fdc300','#d1d82f','#ffe47f','#73d1cc','#85c9f0'];
var inumber = Math.floor((Math.random()* images.length)+1);

var random_image = images[inumber-1];

//Do whatever you want with random_image
//alert( random_image ); //Shows the random image
$('#main-area').css('background-color', random_image);
}
$(document).ready( scan() );


http://akaapoint.fi/

No comments:

Post a Comment