will / index.html
Willrealblack's picture
Crie um céu psicodélico - Initial Deployment
68489e6 verified
Raw
History Blame Contribute Delete
3.36 kB
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Céu Psicodélico</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@keyframes colorShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.psychedelic-sky {
background: linear-gradient(45deg, #ff00cc, #3333ff, #00ffcc, #ffcc00, #ff00cc);
background-size: 400% 400%;
animation: colorShift 15s ease infinite;
position: relative;
overflow: hidden;
}
.star {
position: absolute;
background-color: white;
border-radius: 50%;
animation: twinkle var(--duration) ease-in-out infinite;
}
@keyframes twinkle {
0%, 100% { opacity: 0.2; transform: scale(0.5); }
50% { opacity: 1; transform: scale(1); }
}
.cloud {
position: absolute;
background: rgba(255, 255, 255, 0.7);
border-radius: 50%;
filter: blur(10px);
animation: float var(--speed) linear infinite;
}
@keyframes float {
0% { transform: translateX(-100px) translateY(var(--y)); }
100% { transform: translateX(calc(100vw + 100px)) translateY(var(--y)); }
}
.sun {
position: absolute;
background: radial-gradient(circle, #ffff00, #ff8c00);
border-radius: 50%;
filter: blur(5px);
animation: pulse 8s ease infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 0.8; }
50% { transform: scale(1.1); opacity: 1; }
}
.rainbow-beam {
position: absolute;
height: 2px;
background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
transform-origin: left center;
animation: rotateBeam var(--speed) linear infinite;
filter: blur(1px);
}
@keyframes rotateBeam {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body class="m-0 p-0 font-sans">
<div class="psychedelic-sky w-full h-screen relative">
<!-- Elementos serão adicionados via JavaScript -->
</div>
<div class="absolute bottom-
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Willrealblack/will" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>