Jelly 3D Tetris
About this app
Play a fun, vibrant, and bouncy 3D version of Tetris with jelly-like blocks.
Jelly 3D Tetris
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>Jelly 3D Tetris</title>
<meta name="description" content="Play a fun, vibrant, and bouncy 3D version of Tetris with jelly-like blocks.">
<meta name="keywords" content="Jelly, 3D, Tetris, game, fun, color, online">
<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 {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
// tetris game logic goes here
// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
// DOM manipulation and event bindings go here
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
.container {
perspective: 1000px;
}
.block {
position: relative;
width: 50px;
height: 50px;
transform-style: preserve-3d;
animation: spin 5s infinite linear;
border-radius: 10%;
opacity: .7;
}
.block div {
position: absolute;
width: 50px;
height: 50px;
background: rgba(255, 0, 0, .7);
border-radius: 10%;
}
.block .front { transform: translateY(-25px); }
.block .back { transform: translateY(25px); }
.block .right { transform: translateX(25px) rotateY(90deg); }
.block .left { transform: translateX(-25px) rotateY(90deg); }
.block .top { transform: translateZ(25px); }
.block .bottom { transform: translateZ(-25px); }
@keyframes spin {
from { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
to { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}
</style>
</head>
<body>
<div id="main-container" class="container">
<!-- App HTML Goes Here -->
<div class="block">
<div class="front"></div>
<div class="back"></div>
<div class="left"></div>
<div class="right"></div>
<div class="top"></div>
<div class="bottom"></div>
</div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!