168 lines
5.9 KiB
HTML
168 lines
5.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Horizon OC - Switch Overclocking Tool</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
|
<style>
|
|
/* Background Image Cycling */
|
|
body {
|
|
margin: 0;
|
|
font-family: sans-serif;
|
|
overflow-x: hidden;
|
|
color: white;
|
|
}
|
|
.bg-slide {
|
|
position: fixed;
|
|
top: 0; left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-size: cover;
|
|
background-position: center;
|
|
z-index: -2;
|
|
opacity: 0;
|
|
transition: opacity 2s ease-in-out;
|
|
}
|
|
.bg-slide.active {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Gradient overlay that changes with image */
|
|
.gradient-overlay {
|
|
position: fixed;
|
|
top: 0; left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
pointer-events: none;
|
|
transition: background 2s ease-in-out;
|
|
}
|
|
|
|
/* Pop-in effect */
|
|
.popin {
|
|
transform: scale(0.8);
|
|
opacity: 0;
|
|
transition: transform 0.6s ease, opacity 0.6s ease;
|
|
}
|
|
.popin.aos-animate {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Glassmorphism cards */
|
|
.glass {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
backdrop-filter: blur(12px);
|
|
border: 1px solid rgba(255, 255, 255, 0.25);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
/* Apple-style liquid glass buttons */
|
|
.liquid-button {
|
|
padding: 0.75rem 2rem;
|
|
border-radius: 1.5rem;
|
|
font-weight: 600;
|
|
background: rgba(255,255,255,0.2);
|
|
backdrop-filter: blur(12px);
|
|
border: 1px solid rgba(255,255,255,0.3);
|
|
box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 15px rgba(0,0,0,0.25);
|
|
color: white;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
.liquid-button:hover {
|
|
background: rgba(255,255,255,0.3);
|
|
box-shadow: inset 0 2px 0 rgba(255,255,255,0.35), 0 6px 20px rgba(0,0,0,0.3);
|
|
transform: scale(1.05);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="text-white">
|
|
<!-- Background Images -->
|
|
<div class="bg-slide" style="background-image: url('img1.png');"></div>
|
|
<div class="bg-slide" style="background-image: url('img2.png');"></div>
|
|
<div class="bg-slide" style="background-image: url('img3.png');"></div>
|
|
|
|
<!-- Gradient overlay -->
|
|
<div class="gradient-overlay" id="gradient-overlay" style="background: linear-gradient(135deg, rgba(50,0,100,0.6), rgba(0,0,50,0.6));"></div>
|
|
|
|
<!-- Hero Section -->
|
|
<header class="text-center py-28 relative overflow-hidden popin" data-aos="popin">
|
|
<h1 class="text-6xl font-extrabold mb-4 drop-shadow-lg">Horizon OC</h1>
|
|
<p class="text-lg text-gray-200 mt-4">
|
|
Upgrade the performance of your Nintendo Switch Console
|
|
</p>
|
|
<div class="mt-8 flex justify-center gap-6">
|
|
<a href="#download" class="liquid-button">Download Now</a>
|
|
<a href="benchmarks.html" class="liquid-button">View Benchmarks</a>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- About -->
|
|
<section class="max-w-4xl mx-auto text-center py-20 px-6 popin" data-aos="popin" data-aos-delay="100">
|
|
<h2 class="text-4xl font-bold mb-6">What is Horizon OC?</h2>
|
|
<p class="text-gray-300 text-lg leading-relaxed">
|
|
HOC is a tool to overclock your modded Nintendo Switch Console.
|
|
This can help improve framrates, load times and latency in games.
|
|
</p>
|
|
</section>
|
|
|
|
<!-- Features -->
|
|
<section class="py-20">
|
|
<div class="max-w-6xl mx-auto px-6 grid md:grid-cols-3 gap-10">
|
|
<div class="glass p-8 rounded-2xl shadow-xl hover:scale-105 transition popin" data-aos="popin" data-aos-delay="200">
|
|
<h3 class="text-2xl font-semibold mb-3">⚡ Performance</h3>
|
|
<p class="text-gray-300">Overclocking your console can lead to significantly better performance in demanding titles</p>
|
|
</div>
|
|
<div class="glass p-8 rounded-2xl shadow-xl hover:scale-105 transition popin" data-aos="popin" data-aos-delay="300">
|
|
<h3 class="text-2xl font-semibold mb-3">☣ Safely</h3>
|
|
<p class="text-gray-300">Horizon OC aims to be as safe as possible, while allowing advanced users to customize it further</p>
|
|
</div>
|
|
<div class="glass p-8 rounded-2xl shadow-xl hover:scale-105 transition popin" data-aos="popin" data-aos-delay="400">
|
|
<h3 class="text-2xl font-semibold mb-3">🔧 Customizable</h3>
|
|
<p class="text-gray-300">Horizon OC comes with a advanced configurator which allows you to customize it to your own needs</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Download -->
|
|
<section id="download" class="text-center py-24 popin" data-aos="popin" data-aos-delay="500">
|
|
<h2 class="text-3xl font-bold mb-6">Get Horizon OC</h2>
|
|
<a href="#" class="liquid-button">Download Latest Release</a>
|
|
<p class="text-gray-400 mt-4">Ensure to use the latest version of Atmosphere</p>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer class="bg-black bg-opacity-60 text-center py-6 text-gray-500 text-sm popin" data-aos="popin">
|
|
This website is open source!
|
|
</footer>
|
|
|
|
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
|
<script>
|
|
AOS.init({ once: true, duration: 800 });
|
|
|
|
// Background image cycling with gradient
|
|
const slides = document.querySelectorAll('.bg-slide');
|
|
const gradientOverlay = document.getElementById('gradient-overlay');
|
|
|
|
const gradients = [
|
|
'linear-gradient(135deg, rgba(80,0,150,0.6), rgba(0,0,60,0.6))',
|
|
'linear-gradient(135deg, rgba(150,50,0,0.6), rgba(50,0,0,0.6))',
|
|
'linear-gradient(135deg, rgba(0,100,150,0.6), rgba(0,30,50,0.6))'
|
|
];
|
|
|
|
let current = 0;
|
|
function cycleBg() {
|
|
slides.forEach((s,i)=>s.classList.remove('active'));
|
|
slides[current].classList.add('active');
|
|
gradientOverlay.style.background = gradients[current];
|
|
current = (current+1)%slides.length;
|
|
}
|
|
cycleBg();
|
|
setInterval(cycleBg, 6000); // every 6s
|
|
</script>
|
|
</body>
|
|
</html>
|