Playstore Plus & Banana Games
About this app
Explore, rate, and play a variety of fun games with Playstore Plus and Banana Games. Discover the latest and popular mobile games, give reviews, and connect with your friends!
Playstore Plus & Banana Games Playstore Plus and Banana Games Discover and review your favorite mobile games! Add Game
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>Playstore Plus & Banana Games</title>
<meta name="description" content="Explore, rate, and play a variety of fun games with Playstore Plus and Banana Games. Discover the latest and popular mobile games, give reviews, and connect with your friends!">
<meta name="keywords" content="games, Playstore, Banana Games, mobile games, game reviews, entertainment">
<!-- 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
let games = [];
function addGame() {
const gameName = document.getElementById('gameName').value;
const gameRating = document.getElementById('gameRating').value;
if(gameName && gameRating) {
games.push({ name: gameName, rating: gameRating });
document.getElementById('gameName').value = '';
document.getElementById('gameRating').value = '';
renderGames();
} else {
alert("Please fill in both fields");
}
}
function renderGames() {
const gameList = document.getElementById('gameList');
gameList.innerHTML = '';
games.forEach((game, index) => {
gameList.innerHTML += `<li class="list-group-item d-flex justify-content-between align-items-center">
${game.name} - Rating: ${game.rating}
<button class="btn btn-danger btn-sm" onclick="removeGame(${index})"><i class="fa-solid fa-trash"></i></button>
</li>`;
});
}
function removeGame(index) {
games.splice(index, 1);
renderGames();
}
document.addEventListener("DOMContentLoaded", function() {
document.getElementById('addGameBtn').addEventListener('click', addGame);
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(to bottom right, #ffefba, #ffffff);
color: #4b3d5b;
font-family: 'Arial', sans-serif;
}
#main-container {
margin-top: 50px;
text-align: center;
}
.header {
background-color: #4b3d5b;
padding: 20px;
border-radius: 10px;
color: white;
box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.list-group-item {
transition: all 0.3s;
}
.list-group-item:hover {
background-color: #f1f1f1;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<div class="header">
<h1>Playstore Plus and Banana Games</h1>
<p>Discover and review your favorite mobile games!</p>
</div>
<div class="input-group my-3">
<input type="text" class="form-control" id="gameName" placeholder="Game Name" />
<input type="number" class="form-control" id="gameRating" placeholder="Game Rating (1-5)" />
<button id="addGameBtn" class="btn btn-primary">Add Game</button>
</div>
<ul id="gameList" class="list-group"></ul>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!