Delete Index2.html

This commit is contained in:
2025-07-09 18:06:24 -07:00
parent 68ecf6fcbf
commit 942c1c0285

View File

@ -1,305 +0,0 @@
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Second page wooo!</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
min-height: 100vh;
color: white;
overflow-x: hidden;
}
nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
padding: 1rem 2rem;
backdrop-filter: blur(20px);
background: rgba(0, 0, 0, 0.4);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
gap: 2rem;
}
nav a {
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
padding: 0.5rem 1rem;
border-radius: 10px;
}
nav a:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
}
.main-content {
min-height: 90vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
padding: 2rem;
padding-top: 6rem;
}
.placeholder-content {
max-width: 600px;
}
.placeholder-content h1 {
font-size: 3rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, #ffffff, #868686);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.placeholder-content p {
font-size: 1.2rem;
color: #ccc;
line-height: 1.6;
margin-bottom: 2rem;
}
.cta-button {
padding: 1rem 2rem;
background: linear-gradient(135deg, #868686, #ffffff);
border: none;
border-radius: 50px;
color: Black;
font-weight: 600;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
cursor: pointer;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}
.bouncing-gif-container {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
}
.bouncing-gif {
width: 80px;
height: 80px;
object-fit: cover;
animation: bounceSquish 2s infinite;
cursor: pointer;
transition: all 0.3s ease;
}
.bouncing-gif:hover {
transform: scale(1.1);
filter: brightness(1.1);
}
@keyframes bounceSquish {
0%,
20%,
50%,
80%,
100% {
transform: translateY(0) scaleY(1) scaleX(1);
}
40% {
transform: translateY(-15px) scaleY(1.2) scaleX(0.8);
}
60% {
transform: translateY(-8px) scaleY(1.1) scaleX(0.9);
}
}
@keyframes bounceRotate {
0%,
20%,
50%,
80%,
100% {
transform: translateY(0) rotate(0deg) scaleY(1) scaleX(1);
}
40% {
transform: translateY(-15px) rotate(10deg) scaleY(1.2) scaleX(0.8);
}
60% {
transform: translateY(-8px) rotate(-5deg) scaleY(1.1) scaleX(0.9);
}
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05) scaleY(0.95) scaleX(1.05);
}
100% {
transform: scale(1);
}
}
@keyframes float {
0%,
100% {
transform: translateY(0px) scaleY(1) scaleX(1);
}
50% {
transform: translateY(-10px) scaleY(1.1) scaleX(0.9);
}
}
.bounce-rotate {
animation: bounceRotate 2s infinite;
}
.pulse-effect {
animation: pulse 2s infinite;
}
.float-effect {
animation: float 3s ease-in-out infinite;
}
@media (max-width: 768px) {
.placeholder-content h1 {
font-size: 2rem;
}
.placeholder-content p {
font-size: 1rem;
}
.bouncing-gif {
width: 60px;
height: 60px;
}
nav ul {
flex-direction: column;
gap: 1rem;
}
.main-content {
padding-top: 8rem;
}
}
.glow-effect {
filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5))
drop-shadow(0 0 40px rgba(168, 168, 168, 0.3))
drop-shadow(0 0 60px rgba(54, 54, 54, 0.1));
}
</style>
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Idk what else to add</a></li>
<li><a href="#contact">Another placeholder!</a></li>
</ul>
</nav>
<div class="main-content">
<div class="placeholder-content">
<h1>uhhhhhhh</h1>
<p>You can put something here ig</p>
<a href="#" class="cta-button">Another button wtf</a>
</div>
</div>
<div class="bouncing-gif-container">
<img src="Yippee!.png" alt="Bouncing GIF" class="bouncing-gif" id="bouncingGif">
</div>
<script>
document.getElementById('bouncingGif').addEventListener('click', function() {
alert('Your computer is getting ram crashed in 5 seconds');
});
function changeAnimationStyle() {
const gif = document.getElementById('bouncingGif');
const styles = ['', 'bounce-rotate', 'pulse-effect', 'float-effect'];
const currentStyle = gif.className.split(' ').find(cls => styles.includes(cls)) || '';
const currentIndex = styles.indexOf(currentStyle);
const nextIndex = (currentIndex + 1) % styles.length;
gif.className = gif.className.replace(currentStyle, '').trim();
if (styles[nextIndex]) {
gif.className += ' ' + styles[nextIndex];
}
}
document.getElementById('bouncingGif').addEventListener('click', changeAnimationStyle);
setInterval(() => {
const gif = document.getElementById('bouncingGif');
gif.classList.add('glow-effect');
setTimeout(() => {
gif.classList.remove('glow-effect');
}, 1000);
}, 5000);
document.querySelectorAll('nav a').forEach(anchor => {
anchor.addEventListener('click', function(e) {
const href = this.getAttribute('href');
if (href.startsWith('#')) {
e.preventDefault();
const target = document.querySelector(href);
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
}
});
});
</script>
</body>
</html>