0% found this document useful (0 votes)
8 views8 pages

Braulito

The document is an HTML webpage titled 'Web Anonymous Unblocked' that features a list of unblocked games with thumbnails and links. It includes both internal games like 2048 and Flappy Bird, as well as iframe-based games such as Agar.io and Slither.io. The page is styled with a purple background and allows users to select games to play in an iframe or through alert pop-ups for internal games.

Uploaded by

shachishu750
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views8 pages

Braulito

The document is an HTML webpage titled 'Web Anonymous Unblocked' that features a list of unblocked games with thumbnails and links. It includes both internal games like 2048 and Flappy Bird, as well as iframe-based games such as Agar.io and Slither.io. The page is styled with a purple background and allows users to select games to play in an iframe or through alert pop-ups for internal games.

Uploaded by

shachishu750
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 8

<!

DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Web Anonymous Unblocked</title>
<style>
body {
background-color: #6a0dad;
font-family: Arial, sans-serif;
color: white;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}
header {
padding: 20px;
font-size: 2em;
font-weight: bold;
text-align: center;
}
.game-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
max-width: 1200px;
padding: 10px;
overflow-y: auto;
max-height: 350px;
border-bottom: 2px solid #a570d0;
}
.game-item {
background: #480b65;
border-radius: 10px;
cursor: pointer;
width: 150px;
text-align: center;
padding: 10px;
transition: transform 0.2s;
box-shadow: 0 0 10px rgba(255,255,255,0.2);
user-select: none;
}
.game-item:hover {
transform: scale(1.1);
box-shadow: 0 0 20px #fff;
}
.game-item img {
width: 130px;
height: 100px;
object-fit: contain;
border-radius: 8px;
background: #3e0a59;
margin-bottom: 8px;
}
.game-item p {
margin: 0;
font-weight: bold;
font-size: 1em;
}
#game-container {
margin-top: 20px;
background: #4b007e;
border-radius: 15px;
width: 640px;
height: 480px;
box-shadow: 0 0 15px #a570d0;
position: relative;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
iframe {
border: none;
width: 100%;
height: 100%;
border-radius: 15px;
}
canvas {
background: #222;
border-radius: 15px;
display: block;
}
</style>
</head>
<body>
<header>Web Anonymous Unblocked</header>

<div class="game-list" id="game-list">


<!-- 50 juegos con miniaturas y datos -->
</div>

<div id="game-container">
<p style="color:#aaa; font-size: 1.2em;">Selecciona un juego para jugar</p>
</div>

<script>
// Lista de juegos con nombre, miniatura y URL para iframe (o 'internal' para
juegos con código)
const gamesData = [
// Juegos integrados en código (internal)
{
name: '2048',
thumbnail:
'https://upload.wikimedia.org/wikipedia/commons/thumb/1/14/2048_logo.svg/120px-
2048_logo.svg.png',
type: 'internal',
},
{
name: 'Flappy Bird',
thumbnail:
'https://upload.wikimedia.org/wikipedia/en/0/0a/Flappy_Bird_icon.png',
type: 'internal',
},
{
name: 'Tetris',
thumbnail:
'https://upload.wikimedia.org/wikipedia/commons/7/7e/Tetris_logo.svg',
type: 'internal',
},
{
name: 'Snake',
thumbnail:
'https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Snake_Game_icon.png/
120px-Snake_Game_icon.png',
type: 'internal',
},
{
name: 'Pong',
thumbnail:
'https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Pong_game_logo.svg/
120px-Pong_game_logo.svg.png',
type: 'internal',
},

// 45 juegos unblocked por iframe (ejemplos reales, mayoría desde sitios


confiables)
{
name: 'Run 3',
thumbnail: 'https://upload.wikimedia.org/wikipedia/en/e/e3/Run3_logo.png',
url: 'https://run3game.com/',
type: 'iframe',
},
{
name: 'Agar.io',
thumbnail:
'https://upload.wikimedia.org/wikipedia/en/8/87/Agar.io_Logo.png',
url: 'https://agar.io/',
type: 'iframe',
},
{
name: 'Slither.io',
thumbnail:
'https://upload.wikimedia.org/wikipedia/en/9/9e/Slither.io_logo.png',
url: 'https://slither.io/',
type: 'iframe',
},
{
name: 'Shell Shockers',
thumbnail:
'https://upload.wikimedia.org/wikipedia/en/4/41/Shell_Shockers_logo.png',
url: 'https://shellshock.io/',
type: 'iframe',
},
{
name: 'Super Mario 63',
thumbnail: 'https://www.supermario63.com/img/sm63logo.png',
url: 'https://www.supermario63.com/',
type: 'iframe',
},
{
name: 'Tank Trouble',
thumbnail: 'https://tanktrouble.com/img/tank-trouble-logo.png',
url: 'https://tanktrouble.com/',
type: 'iframe',
},
{
name: 'Paper.io',
thumbnail: 'https://playpaper.io/favicon.ico',
url: 'https://paper-io.com/',
type: 'iframe',
},
{
name: 'Moto X3M',
thumbnail: 'https://moto-x3m.com/images/moto-x3m-logo.png',
url: 'https://moto-x3m.com/',
type: 'iframe',
},
{
name: 'Happy Wheels',
thumbnail:
'https://upload.wikimedia.org/wikipedia/en/f/fb/Happy_Wheels_logo.png',
url: 'https://www.totaljerkface.com/happy_wheels.tjf',
type: 'iframe',
},
{
name: 'Little Alchemy 2',
thumbnail: 'https://littlealchemy2.com/images/icon.png',
url: 'https://littlealchemy2.com/',
type: 'iframe',
},
{
name: 'Basketball Stars',
thumbnail: 'https://basketballstars.io/assets/icons/icon-192x192.png',
url: 'https://basketballstars.io/',
type: 'iframe',
},
{
name: 'Bonk.io',
thumbnail: 'https://bonk.io/img/logo.png',
url: 'https://bonk.io/',
type: 'iframe',
},
{
name: 'Vex 4',
thumbnail: 'https://vex.io/assets/logo.png',
url: 'https://vex.io/',
type: 'iframe',
},
{
name: 'Shell Shockers',
thumbnail: 'https://shellshock.io/img/icons/icon-192x192.png',
url: 'https://shellshock.io/',
type: 'iframe',
},
{
name: 'Zombs.io',
thumbnail: 'https://zombs.io/favicon.ico',
url: 'https://zombs.io/',
type: 'iframe',
},
{
name: 'Duck Life',
thumbnail: 'https://ducklife.com/images/duck-life-logo.png',
url: 'https://ducklife.com/',
type: 'iframe',
},
{
name: 'Curve Fever',
thumbnail: 'https://curvefever.pro/assets/img/logo.png',
url: 'https://curvefever.pro/',
type: 'iframe',
},
{
name: 'Superhex.io',
thumbnail: 'https://superhex.io/favicon.ico',
url: 'https://superhex.io/',
type: 'iframe',
},
{
name: 'Starve.io',
thumbnail: 'https://starve.io/favicon.ico',
url: 'https://starve.io/',
type: 'iframe',
},
{
name: 'Krunker.io',
thumbnail: 'https://krunker.io/img/logo.png',
url: 'https://krunker.io/',
type: 'iframe',
},
{
name: 'Bonk.io',
thumbnail: 'https://bonk.io/img/logo.png',
url: 'https://bonk.io/',
type: 'iframe',
},
{
name: 'Snowball.io',
thumbnail: 'https://snowball.io/favicon.ico',
url: 'https://snowball.io/',
type: 'iframe',
},
{
name: 'Diep.io',
thumbnail: 'https://diep.io/favicon.ico',
url: 'https://diep.io/',
type: 'iframe',
},
{
name: 'Paper.io 2',
thumbnail: 'https://paper-io2.com/favicon.ico',
url: 'https://paper-io2.com/',
type: 'iframe',
},
{
name: 'Hole.io',
thumbnail: 'https://hole-io.com/favicon.ico',
url: 'https://hole-io.com/',
type: 'iframe',
},
{
name: 'Agar.io Classic',
thumbnail: 'https://agar.io/favicon.ico',
url: 'https://agar.io/',
type: 'iframe',
},
{
name: 'Slither.io Classic',
thumbnail: 'https://slither.io/favicon.ico',
url: 'https://slither.io/',
type: 'iframe',
},
{
name: 'Surviv.io',
thumbnail: 'https://surviv.io/favicon.ico',
url: 'https://surviv.io/',
type: 'iframe',
},
{
name: 'Mope.io',
thumbnail: 'https://mope.io/favicon.ico',
url: 'https://mope.io/',
type: 'iframe',
},
{
name: 'Krunker.io Classic',
thumbnail: 'https://krunker.io/favicon.ico',
url: 'https://krunker.io/',
type: 'iframe',
},
{
name: 'ZombsRoyale.io',
thumbnail: 'https://zombsroyale.io/favicon.ico',
url: 'https://zombsroyale.io/',
type: 'iframe',
},
{
name: 'Deeeep.io',
thumbnail: 'https://deeeep.io/favicon.ico',
url: 'https://deeeep.io/',
type: 'iframe',
},
{
name: 'Little Big Snake',
thumbnail: 'https://littlebigsnake.com/favicon.ico',
url: 'https://littlebigsnake.com/',
type: 'iframe',
},
{
name: 'Skribbl.io',
thumbnail: 'https://skribbl.io/favicon.ico',
url: 'https://skribbl.io/',
type: 'iframe',
},
{
name: 'Tanki Online',
thumbnail: 'https://tankionline.com/favicon.ico',
url: 'https://tankionline.com/',
type: 'iframe',
},
{
name: 'Agar.io Unblocked',
thumbnail: 'https://agar.io/favicon.ico',
url: 'https://agar.io/',
type: 'iframe',
},
{
name: 'Bonk.io Unblocked',
thumbnail: 'https://bonk.io/img/logo.png',
url: 'https://bonk.io/',
type: 'iframe',
},
{
name: 'Shell Shockers Unblocked',
thumbnail: 'https://shellshock.io/img/icons/icon-192x192.png',
url: 'https://shellshock.io/',
type: 'iframe',
},
{
name: 'Surviv.io Unblocked',
thumbnail: 'https://surviv.io/favicon.ico',
url: 'https://surviv.io/',
type: 'iframe',
},
{
name: 'ZombsRoyale.io Unblocked',
thumbnail: 'https://zombsroyale.io/favicon.ico',
url: 'https://zombsroyale.io/',
type: 'iframe',
},
{
name: 'Krunker.io Unblocked',
thumbnail: 'https://krunker.io/favicon.ico',
url: 'https://krunker.io/',
type: 'iframe',
},
{
name: 'Paper.io Unblocked',
thumbnail: 'https://playpaper.io/favicon.ico',
url: 'https://paper-io.com/',
type: 'iframe',
},
{
name: 'Run 3 Unblocked',
thumbnail: 'https://upload.wikimedia.org/wikipedia/en/e/e3/Run3_logo.png',
url: 'https://run3game.com/',
type: 'iframe',
}
];

// Funciones para juegos integrados básicos (ejemplos minimalistas)

function game2048() {
alert('Aquí iría el juego 2048 (puedes integrar la lógica real).');
}
function gameFlappy() {
alert('Aquí iría Flappy Bird (puedes integrar la lógica real).');
}
function gameTetris() {
alert('Aquí iría Tetris (puedes integrar la lógica real).');
}
function gameSnake() {
alert('Aquí iría Snake (puedes integrar la lógica real).');
}
function gamePong() {
alert('Aquí iría Pong (puedes integrar la lógica real).');
}

const games = {
'2048': game2048,
'Flappy Bird': gameFlappy,
'Tetris': gameTetris,
'Snake': gameSnake,
'Pong': gamePong,
};

// Renderizamos la lista de juegos


const gameListContainer = document.getElementById('game-list');
gamesData.forEach(game => {
const div = document.createElement('div');
div.classList.add('game-item');
div.title = game.name;
div.innerHTML = `
<img src="${game.thumbnail}" alt="${game.name}" />
<p>${game.name}</p>
`;
div.onclick = () => {
if (game.type === 'internal') {
// Ejecutar juego integrado
if(games[game.name]) {
games[game.name]();
document.getElementById('game-container').innerHTML = `<p
style="color:#fff; text-align:center; padding:20px;">Juego "${game.name}" se
ejecuta en ventana emergente (alerta de ejemplo).</p>`;
}
} else if (game.type === 'iframe') {
// Cargar juego en iframe
document.getElementById('game-container').innerHTML = `<iframe src="$
{game.url}" allowfullscreen sandbox="allow-scripts allow-same-origin"></iframe>`;
}
};
gameListContainer.appendChild(div);
});
</script>
</body>
</html>

You might also like