waifuism.life
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
waifuism/home/index.html

61 lines
2.2 KiB

5 months ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home??</title>
<link rel="icon" href="../static/site/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="../default_style.css">
5 months ago
</head>
5 months ago
<body>
5 months ago
<audio autoplay="" loop="" src="./Mi Casa Tu Casa [SWgIDXR8xR0].mp3"></audio>
<div id="main">
5 months ago
<div id="title">
<div>
<img src="../static/site/logo.png" id="melon">
</div>
<div>
<h1>Pick something?</h1>
</div>
</div>
5 months ago
<div id="menu">
<div id="side">
<a href="./normal/">
<img src="sidetop.png" alt="normal" class="normal_image">
</a>
<img src="sidebottom.png" alt="normal" class="normal_image">
</div>
5 months ago
<div id="image-container">
<img src="empty.png" id="large-image">
</div>
<div id="seeds">
<a href="./art/" class="seed" id="art"><img src="seed.png"></a>
<a href="./shrine/" class="seed" id="shrine"><img src="seed.png"></a>
<a href="./friends/" class="seed" id="friends"><img src="seed.png"></a>
<a href="./stuff/" class="seed" id="stuff"><img src="seed.png"></a>
</div>
</div>
</div>
5 months ago
5 months ago
<script>
const menuItems = document.querySelectorAll('.seed');
5 months ago
const largeImage = document.getElementById('large-image');
const imageContainer = document.getElementById('image-container');
menuItems.forEach(item => {
item.addEventListener('mouseenter', () => {
const subfolder = item.getAttribute('id');
const imgSrc = `${subfolder}.png`; // Generating image path from subfolder name
largeImage.src = imgSrc;
imageContainer.style.opacity = 1;
});
item.addEventListener('mouseleave', () => {
imageContainer.style.opacity = 0;
});
});
</script>
5 months ago
</body>
</html>