Advertisement
Al-Azif

Untitled

Feb 23rd, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. "use strict";
  2.  
  3. setInterval(function () {
  4. $('.btn-primary').css('background-color', "rgba(".concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.random().toFixed(1), ")"));
  5. $('.btn-primary').css('border-color', "rgba(".concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.random().toFixed(1), ")"));
  6. $('.btn-primary').css('color', "rgba(".concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.random().toFixed(1), ")"));
  7. $('body').css('background-color', "rgba(".concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.random().toFixed(1), ")"));
  8. $('#title').css('color', "rgba(".concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.random().toFixed(1), ")"));
  9. $('#header').css('color', "rgba(".concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.random().toFixed(1), ")"));
  10. $('.content-title').css('background-color', "rgba(".concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.random().toFixed(1), ")"));
  11. $('.content-title').css('border-color', "rgba(".concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.random().toFixed(1), ")"));
  12. $('.content-header').css('border-color', "rgba(".concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.round(Math.random() * 255), ", ").concat(Math.random().toFixed(1), ")"));
  13. }, 100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement