Advertisement
Al-Azif

Untitled

Feb 21st, 2019
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. var nextColor = "rgba(254, 33, 33, 1)";
  2. setInterval(function() {
  3. document.body.style.backgroundColor = nextColor;
  4.  
  5. if (nextColor === "rgba(254, 33, 33, 1)") {
  6. nextColor = "rgba(50, 44, 44, 1)";
  7. } else {
  8. nextColor = "rgba(254, 33, 33, 1)";
  9. }
  10. }, 100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement