About
Explore
Events & Classes
Support Us
Join
Sign In
Illyaas
View Project Page
Run
Fullscreen
Color change BG
HTML
CSS
JS
<!DOCTYPE HTML> <html> <head> <title>Page Title</title> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1.0,shrink-to-fit=no,width=device-width"> </head> <body></body> </html>
body { transition: all 1.3s; }
function bg() {var number = Math.ceil(Math.random() * 6);Â var color = ['', 'blue', 'red', 'purple', 'cyan', 'orange', 'yellow']; var body = document.querySelector('body'); body.style.background=color[number]} setInterval(bg, 2000);