Dalmatian Clicker
About this app
A fun web app with dalmatian icon buttons. Each click shows a new image!
Dalmatian Clicker 🐶 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>Dalmatian Clicker</title>
<meta name="description" content="A fun web app with dalmatian icon buttons. Each click shows a new image!">
<meta name="keywords" content="dalmatian, icons, images, Google, Paw Patrol, Pup-Fu">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script type="text/javascript">
try {
let clickCount = 0;
const maxClicks = 5601;
const pawPatrolImageUrl = "https://your_paw_patrol_image_url_here.jpg"; // Replace with your URL
document.addEventListener("DOMContentLoaded", function() {
document.getElementById('dalmatian-button').addEventListener('click', function() {
clickCount++;
if (clickCount < maxClicks) {
document.getElementById('image-container').innerHTML = `<img src="https://your_placeholder_image_url_here.jpg" alt="Image ${clickCount}">`; // Replace with your URL
} else {
document.getElementById('image-container').innerHTML = `<img src="${pawPatrolImageUrl}" alt="Paw Patrol Image">`;
this.disabled = true; // Disable button after max clicks
}
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: #FAFAFA;
}
#dalmatian-button {
font-size: 48px;
margin-top: 20px;
}
#image-container img {
max-width: 100%;
height: auto;
margin-top: 20px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<button id="dalmatian-button" class="btn btn-primary">
🐶 Click me!
</button>
<div id="image-container">
<!-- Image will be inserted here -->
</div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!