Rain Effect

DevJunctionPoint
0




Rain Effect Project 

Note: Images are available in the GitHub link 

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>rain effect</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            width: 100vw;
            height: 100vh;
            background-image: linear-gradient(rgba(0, 0, 0, 0.4),
                    rgba(0, 0, 0, 0.4)),
                url("https://images.pexels.com/photos/8645132/pexels-photo-8645132.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
            background-repeat: no-repeat;
            background-size: 100% 100%;
        }

        .rain {
            width: 100vw;
            height: 100vh;
            background-image: url("rain.png");
            animation: raining .4s linear infinite;
        }

        @keyframes raining {
            0% {
                background-position: 0% 0%;
            }

            100% {
                background-position: 10% 100%;
            }
        }
    </style>
</head>

<body>
    <div class="rain"></div>
</body>

</html>
Tags

Post a Comment

0Comments

Do leave your comments

Post a Comment (0)

#buttons=(Ok, Go it!) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Ok, Go it!
To Top