Monkey Eating Taco Bell
About this app
A fun web app featuring a monkey eating Taco Bell
Monkey Eating Taco Bell Monkey Eating Taco Bell Eat!
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>Monkey Eating Taco Bell</title>
<meta name="description" content="A fun web app featuring a monkey eating Taco Bell">
<meta name="keywords" content="monkey, Taco Bell, food, fun, web app">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.2/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 {
// 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() {
var monkeyImage = document.getElementById("monkey-image");
var tacoBellImage = document.getElementById("taco-bell-image");
var eatButton = document.getElementById("eat-button");
var eatSound = new Audio("https://example.com/eating-sound.mp3");
eatButton.addEventListener("click", function() {
monkeyImage.classList.add("eating-animation");
tacoBellImage.classList.add("zoom-out-animation");
eatSound.play();
});
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
body {
background-color: #f7f7f7;
font-family: 'Open Sans', sans-serif;
}
.container {
text-align: center;
padding: 20px;
}
h1 {
color: #333;
font-size: 28px;
}
.image-wrapper {
margin-top: 50px;
}
.image-wrapper img {
max-width: 100%;
height: auto;
}
.eating-animation {
animation-name: eat;
animation-duration: 2s;
animation-iteration-count: infinite;
}
.zoom-out-animation {
animation-name: zoomOut;
animation-duration: 2s;
animation-iteration-count: 1;
}
@keyframes eat {
0% { transform: scale(1); }
50% { transform: scale(0.9); }
100% { transform: scale(1); }
}
@keyframes zoomOut {
0% { transform: scale(1); }
100% { transform: scale(0); }
}
.button-wrapper {
margin-top: 20px;
}
.button-wrapper button {
padding: 10px 20px;
font-size: 18px;
background-color: #eb5e28;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
.button-wrapper button:hover {
background-color: #d44a1f;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Monkey Eating Taco Bell</h1>
<div class="image-wrapper">
<img id="monkey-image" src="https://example.com/monkey.png" alt="Monkey" />
<img id="taco-bell-image" src="https://example.com/taco-bell.png" alt="Taco Bell" />
</div>
<div class="button-wrapper">
<button id="eat-button">Eat!</button>
</div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!