Calculator Tools Calculator Tools
Create

Colorful Fun App

Jun 20, 2026

About this app

Engage with our colorful web app filled with fun interactions and features. Explore now!

Colorful Fun App Welcome to the Colorful Fun App! Click the button to increment the count and see the effects! 0 Click Me!

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Colorful Fun App</title>
<meta name="description" content="Engage with our colorful web app filled with fun interactions and features. Explore now!">
<meta name="keywords" content="web app, fun, interactive, colorful, button clicks, animations">

<!-- Libraries -->
<!-- jQuery (3.6.0) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<!-- Bootstrap CSS (5.3.3) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<!-- Bootstrap JS (5.3.3) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<!-- Font Awesome (6.6.0) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">

<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.

// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
let animation = document.getElementById("animation-area");

$("#click-button").on("click", function() {
let currentCount = parseInt($("#counter").text());
$("#counter").text(currentCount + 1);
animation.classList.add("animate");
setTimeout(() => animation.classList.remove("animate"), 1000);
});
});

} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>

<style>
/* App CSS Goes Here */
body {
background: linear-gradient(135deg, #ff6b6b, #f7f13e);
color: #333;
}
#main-container {
text-align: center;
padding: 50px;
}
#click-button {
background-color: #4CAF50;
color: white;
border: none;
padding: 15px 30px;
font-size: 18px;
margin-top: 20px;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s, box-shadow 0.3s;
}
#click-button:hover {
transform: translateY(-3px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
#animation-area {
display: inline-block;
margin-top: 30px;
padding: 30px;
background: #fff;
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
}
#animation-area.animate {
animation: pulsate 1s;
}
@keyframes pulsate {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
h1 {
font-size: 36px;
margin-bottom: 20px;
}
.counter {
font-size: 42px;
font-weight: bold;
color: #ff365c;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<!-- App HTML Goes Here -->
<h1>Welcome to the Colorful Fun App!</h1>
<p>Click the button to increment the count and see the effects!</p>
<div id="animation-area">
<div class="counter" id="counter">0</div>
</div>
<button id="click-button">Click Me!</button>
</div>
</body>
</html>