How to Create a Cloud Rain Effect with HTML, CSS, and JavaScript
By Cristian Quiñones, Published on January 23rd 2025 | 4 mins, 635 words
Welcome to this creative tutorial, today I will show you how to create a "Cloud Raindrops Effect" with only HTML, CSS, and JavaScript. This effect looks like a raindrops falling from a cloud, tranforming your website with engaging and interactive elements.
Things you will learn after this tutorial:
Create a Cool Animations: Discover how to use CSS Animation Keyframes for smooth and captivating visual effects.
Adding JavaScript for Interactivity: Understand how to dynamically create elements and real-time animations.
Dynamic Web Design: Master the art of combining HTML, CSS, and JavaScript to create a user-friendly and dynamic web layouts.
Now let's get started!
Step 1: Setting Up the HTML Structure
We’ll start by creating an index.html then follow this code:
Step 3: Make our application more Interactive with Javascript
we have defined a basic structure and added some designs now lets make our application dynamic with Javascript. Here's the main.js code:
main.js
function randomText(){
var text = ("!@#$%^*()")
letters =text[Math.floor(Math.random() * text.length)];
return letters;
}
function rain() {
let cloud = document.querySelector('.cloud');
let e = document.createElement('div');
e.classList.add('drop');
cloud.appendChild(e);
let left = Math.floor(Math.random() * 300)
let size = Math.random() * 1.5;
let duration = Math.random() *1;
e.innerText = randomText();
e.style.left = left + 'px';
e.style.fontSize = 0.5+size +'em';
e.style.animationDuration = 1+duration+'s';
setTimeout(function(){
cloud.removeChild(e)
},2000)
}
setInterval(function(){
rain()
},20);
// The cloud effect completes here.
Testing the Application:
Open the application on your browser and check if it's working
cloudraineffect.PNG105.75 KB
🎉 Congratulations!!! 🎉
You have successfully created a glowing cloud raindrops effect with just HTML, CSS, and JavaScript, You can further customize the color, speed, and size that suits your creativity.
💡 What will you build next with this technique? Unleash your creativity! ✨ We'd love to hear your ideas—drop them in the comments below!! 💬