Viral Colour Changing Bottle on YouTube Shorts

Posted by

Sure! Here’s a tutorial using HTML tags to create a color-changing bottle effect:

Step 1: Create a new HTML document
First, open your favorite code editor and create a new HTML document. Save it with an appropriate file name, such as "color-change-bottle.html".

Step 2: Add the HTML structure
Start by adding the basic HTML structure to your document. Here’s an example of what it should look like:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Color Change Bottle</title>
    <style>
        /* Add CSS styles here */
    </style>
</head>
<body>
    <div id="bottle" onclick="changeColor()"></div>
    <script>
        // Add JavaScript code here
        function changeColor() {
            document.getElementById("bottle").style.backgroundColor = getRandomColor();
        }

        function getRandomColor() {
            let letters = "0123456789ABCDEF";
            let color = "#";
            for (let i = 0; i < 6; i++) {
                color += letters[Math.floor(Math.random() * 16)];
            }
            return color;
        }
    </script>
</body>
</html>

Step 3: Add CSS styles
Next, add the CSS styles to style the color-changing bottle element. Here’s an example of what it should look like:

#bottle {
    width: 100px;
    height: 200px;
    background-color: #FF5733;
    border-radius: 20px;
    margin: 50px auto;
    cursor: pointer;
}

Step 4: Add JavaScript code
Finally, add the JavaScript code to handle the color-changing effect when the bottle is clicked. The changeColor() function changes the background color of the bottle to a random color generated by the getRandomColor() function.

Step 5: Test the color-changing bottle
You can now open the HTML file in your web browser and click on the bottle to see it change colors. Try clicking multiple times to see different colors appear!

That’s it! You’ve successfully created a color-changing bottle effect using HTML tags. Feel free to customize the size, shape, and colors of the bottle to create your own unique design.