California Tower Game
About this app
Experience the thrill of jumping from the top of the highest towers in California with Adam Levine.
California Tower Game Super Jump Skydive Teleport to Tower: Tower 1 Tower 2 Tower 3
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>California Tower Game</title>
<meta name="description" content="Experience the thrill of jumping from the top of the highest towers in California with Adam Levine.">
<meta name="keywords" content="California, tower, game, Adam Levine, jump, skydive, bellyflop">
<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">
<link href="https://fonts.googleapis.com/css?family=Gill+MT" rel="stylesheet">
<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
document.addEventListener("DOMContentLoaded", function() {
// Function to handle super jump
function superJump() {
// Increase player's height to 100%
$('#player').css('height', '100%');
}
// Function to handle skydiving
function skydive() {
// Add bellyflop class to player
$('#player').addClass('bellyflop');
}
// Function to handle teleportation
function teleportToTower(towerName) {
// Display tower video footage
$('#video-container').html('<video src="' + towerName + '.mp4" autoplay controls></video>');
// Display tower image
$('#tower-image').attr('src', towerName + '.jpg');
}
// Event listener for super jump button
$('#super-jump-btn').click(function() {
superJump();
});
// Event listener for skydive button
$('#skydive-btn').click(function() {
skydive();
});
// Event listener for teleportation buttons
$('.teleport-btn').click(function() {
var towerName = $(this).data('tower');
teleportToTower(towerName);
});
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
body {
font-family: 'Gill MT', sans-serif;
background-color: #F3EFEF;
}
#game-container {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
#player {
width: 200px;
height: 200px;
background-color: #FF0000;
border-radius: 50%;
margin-bottom: 20px;
transition: height 0.5s;
}
.bellyflop {
transform: rotate(90deg);
}
#controls {
text-align: center;
}
.btn {
margin: 5px;
}
#video-container {
margin-top: 20px;
}
#tower-image {
width: 100%;
height: auto;
margin-top: 20px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<div id="game-container">
<div id="player"></div>
<div id="controls">
<button id="super-jump-btn" class="btn btn-primary">Super Jump</button>
<button id="skydive-btn" class="btn btn-danger">Skydive</button>
</div>
<div id="teleportation">
<h2>Teleport to Tower:</h2>
<button class="btn btn-secondary teleport-btn" data-tower="tower1">Tower 1</button>
<button class="btn btn-secondary teleport-btn" data-tower="tower2">Tower 2</button>
<button class="btn btn-secondary teleport-btn" data-tower="tower3">Tower 3</button>
</div>
<div id="video-container"></div>
<img id="tower-image" src="" alt="California Tower">
</div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!