+7 747 246 46 11
web-stud@mail.ru
Все работы
Вход
+7 747 246 46 11
web-stud@mail.ru
Remember me
Log in
Forgot your password?
Forgot your username?
Все работы
Вход
function randomColor(){ r = Math.floor(Math.random() * (256)); g = Math.floor(Math.random() * (256)); b = Math.floor(Math.random() * (256)); jQuery('#sp-header').css('background-color','rgb('+r+','+g+','+b+')'); jQuery('#sp-footer').css('background-color','rgb('+r+','+g+','+b+')'); jQuery('.jweb-portfolio-filters #filter .jweb-filter a.active').css('background-color','rgb('+r+','+g+','+b+')'); jQuery('a').css('color','rgb('+r+','+g+','+b+')'); jQuery('.item-info').css('background','rgb('+r+','+g+','+b+')'); jQuery(' .noop-filters a ').css('color','rgb('+r+','+g+','+b+')') } jQuery(document).ready(function(){ randomColor(); var t = setInterval(randomColor,30000); });