Random Color on scrolling window in Simple HTML Css & JavaScript

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport"
content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        body{
            height: 2000px;
        }
    </style>
</head>
<body>
    <H1>Hello This is Scroll Event</H1>

    <script>
   const setBg = () =>{
    const randomColor= Math.floor(Math.random()*16777215).toString(16);
       document.body.style.background="#"+randomColor;
       color.innerHTML="#"+randomColor;

          }
     
        window.addEventListener("scroll",setBg
            //window.alert("Scrolling...");
       
        );
        setBg();
       
    </script>
</body>
</html>

Comments

Blogs