This commit is contained in:
larenti19842
2026-01-02 13:24:12 -03:00
parent 6aae40ddbb
commit d43476a531
2 changed files with 213 additions and 0 deletions

1
hola.txt Normal file
View File

@@ -0,0 +1 @@
ddddddd

212
index.html Normal file
View File

@@ -0,0 +1,212 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hola Mundo - Premium Design</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;600;800&display=swap" rel="stylesheet">
<style>
:root {
--primary: #6366f1;
--secondary: #a855f7;
--accent: #ec4899;
--bg-dark: #0f172a;
--text-light: #f8fafc;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Outfit', sans-serif;
background: var(--bg-dark);
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
color: var(--text-light);
}
/* Animated Gradient Background */
.background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(-45deg, #0f172a, #1e1b4b, #312e81, #1e1b4b);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
z-index: -1;
}
@keyframes gradientBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
/* Floating Blobs for Aesthetic */
.blob {
position: absolute;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0) 70%);
border-radius: 50%;
filter: blur(80px);
z-index: -1;
animation: move 20s infinite alternate;
}
.blob-1 {
top: -100px;
left: -100px;
}
.blob-2 {
bottom: -100px;
right: -100px;
animation-delay: -5s;
}
@keyframes move {
from {
transform: translate(0, 0) scale(1);
}
to {
transform: translate(100px, 100px) scale(1.1);
}
}
/* Main Card */
.container {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
padding: 3rem;
text-align: center;
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
max-width: 500px;
width: 90%;
opacity: 0;
transform: translateY(20px);
animation: fadeIn 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
h1 {
font-size: 4rem;
font-weight: 800;
background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 1rem;
letter-spacing: -0.02em;
}
p {
font-size: 1.1rem;
color: #94a3b8;
font-weight: 300;
line-height: 1.6;
}
.highlight {
color: var(--secondary);
font-weight: 600;
}
/* Subtle Interactive Element */
.btn {
margin-top: 2rem;
display: inline-block;
padding: 0.8rem 2rem;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 12px;
color: white;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
cursor: pointer;
border: none;
box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
filter: brightness(1.1);
}
.btn:active {
transform: translateY(0);
}
</style>
</head>
<body>
<div class="background"></div>
<div class="blob blob-1"></div>
<div class="blob blob-2"></div>
<main class="container">
<h1>¡Hola Mundo!</h1>
<p>Bienvenido a una experiencia <span class="highlight">moderna</span> y <span class="highlight">fluida</span>.
Este es un ejemplo de diseño premium minimalista.</p>
<button class="btn" onclick="celebrate()">Saludar</button>
</main>
<script src="https://cdn.jsdelivr.net/npm/canvas-confetti@1.6.0/dist/confetti.browser.min.js"></script>
<script>
function celebrate() {
const duration = 3 * 1000;
const animationEnd = Date.now() + duration;
const defaults = { startVelocity: 30, spread: 360, ticks: 60, zIndex: 0 };
function randomInRange(min, max) {
return Math.random() * (max - min) + min;
}
const interval = setInterval(function () {
const timeLeft = animationEnd - Date.now();
if (timeLeft <= 0) {
return clearInterval(interval);
}
const particleCount = 50 * (timeLeft / duration);
confetti({ ...defaults, particleCount, origin: { x: randomInRange(0.1, 0.3), y: Math.random() - 0.2 } });
confetti({ ...defaults, particleCount, origin: { x: randomInRange(0.7, 0.9), y: Math.random() - 0.2 } });
}, 250);
}
// Entrance console greeting
console.log('%c Hello World! %c Welcome to your premium experience. ', 'background: #6366f1; color: white; padding: 4px; border-radius: 4px;', 'color: #6366f1;');
</script>
</body>
</html>