mirror of
https://github.com/YouHaveTrouble/youhavetrouble.github.io.git
synced 2026-05-11 22:06:56 +00:00
finally working intersection observers
This commit is contained in:
+7
-3
@@ -20,11 +20,12 @@
|
||||
</head>
|
||||
<body>
|
||||
<nav>
|
||||
<a href="#hero">Home</a>
|
||||
<a href="#projects">Projects</a>
|
||||
<a data-link="about" href="#about">About me</a>
|
||||
<a data-link="projects" href="#projects">Projects</a>
|
||||
<a data-link="socials" href="#socials">Socials</a>
|
||||
</nav>
|
||||
<main>
|
||||
<section id="hero">
|
||||
<section id="about">
|
||||
<article>
|
||||
<div>
|
||||
<h1>YouHaveTrouble</h1>
|
||||
@@ -213,6 +214,9 @@
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
<section id="socials">
|
||||
|
||||
</section>
|
||||
</main>
|
||||
|
||||
</body>
|
||||
|
||||
@@ -1,41 +1,36 @@
|
||||
const navLinks = {
|
||||
hero: document.querySelector('a[href="#hero"]'),
|
||||
projects: document.querySelector('a[href="#projects"]'),
|
||||
}
|
||||
const sections = document.querySelectorAll('main section');
|
||||
const navLinks = document.querySelectorAll('[data-link]');
|
||||
|
||||
const sections = {
|
||||
hero: document.querySelector('#hero'),
|
||||
projects: document.querySelector('#projects'),
|
||||
}
|
||||
const options = {
|
||||
root: null,
|
||||
rootMargin: '-20% 0px -20% 0px',
|
||||
threshold: 0.2
|
||||
};
|
||||
|
||||
changeSection(window.location.hash ? window.location.hash : '#hero')
|
||||
|
||||
for (const link of Object.values(navLinks)) {
|
||||
link.addEventListener('click', (e) => {
|
||||
const target = e.target.getAttribute('href');
|
||||
if (!target.startsWith('#')) return;
|
||||
changeSection(target)
|
||||
}
|
||||
)
|
||||
const observer = new IntersectionObserver((entries, observer) => {
|
||||
entries.forEach(entry => {
|
||||
entries.forEach(entry => {
|
||||
if (entry.isIntersecting) {
|
||||
const sectionId = entry.target.id;
|
||||
setActiveLink(sectionId);
|
||||
}
|
||||
});
|
||||
});
|
||||
}, options);
|
||||
|
||||
function changeSection(sectionName) {
|
||||
for (const link of Object.values(navLinks)) {
|
||||
sections.forEach(section => {
|
||||
observer.observe(section);
|
||||
});
|
||||
|
||||
function setActiveLink(sectionId) {
|
||||
navLinks.forEach(link => {
|
||||
link.classList.remove('active');
|
||||
if (link.getAttribute('data-link') === sectionId) {
|
||||
link.classList.add('active');
|
||||
}
|
||||
for (const link of Object.values(sections)) {
|
||||
link.classList.remove('active');
|
||||
});
|
||||
}
|
||||
|
||||
if (!sectionName.startsWith('#')) {
|
||||
sectionName = '#' + sectionName;
|
||||
}
|
||||
|
||||
const targetElement = document.querySelector(sectionName);
|
||||
if (!targetElement) return;
|
||||
targetElement.classList.add('active');
|
||||
navLinks[targetElement.id].classList.add('active');
|
||||
}
|
||||
|
||||
/** Shuffle data-info elements */
|
||||
function shuffleArray(array) {
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
--text-color: #cccccc;
|
||||
--text-color-highlight: #ffffff;
|
||||
scroll-behavior: smooth;
|
||||
overscroll-behavior-y: contain;
|
||||
}
|
||||
|
||||
html {
|
||||
@@ -27,7 +28,7 @@ body {
|
||||
background-color: rgba(0, 0, 0, 0.65);
|
||||
background-attachment: fixed;
|
||||
background-position: center;
|
||||
overflow-y: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
@@ -92,8 +93,8 @@ main {
|
||||
padding: 0;
|
||||
margin-left: 2rem;
|
||||
width: 100%;
|
||||
scroll-snap-type: block;
|
||||
scroll-snap-align: start;
|
||||
overscroll-behavior-y: contain;
|
||||
scroll-snap-type: y proximity;
|
||||
}
|
||||
|
||||
section {
|
||||
@@ -102,13 +103,15 @@ section {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
overflow-y: auto;
|
||||
overscroll-behavior: contain;
|
||||
scroll-snap-align: start;
|
||||
}
|
||||
|
||||
article {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#hero {
|
||||
#about {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
@@ -120,20 +123,18 @@ article {
|
||||
flex-direction: column;
|
||||
justify-content: start;
|
||||
align-items: center;
|
||||
background-color: rgba(0,0,0, 0.9);
|
||||
background-color: rgba(0,0,0, 0.85);
|
||||
background-blend-mode: darken;
|
||||
padding-top: 2rem;
|
||||
padding-bottom: 2rem;
|
||||
background-image: url("/img/bg-projects.jpg");
|
||||
transition: background-color 4s;
|
||||
background-position: center;
|
||||
background-attachment: fixed;
|
||||
overflow-y: auto;
|
||||
overflow-y: overlay;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
#projects.active {
|
||||
background-color: rgba(0,0,0, 0.85);
|
||||
|
||||
}
|
||||
|
||||
#projects .links {
|
||||
@@ -155,6 +156,11 @@ article {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#projects .links a button:hover {
|
||||
background-color: rgba(255,255,255, 0.15);
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
|
||||
#projects .links a button img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
@@ -187,7 +193,7 @@ article {
|
||||
border-color: var(--text-color-highlight);
|
||||
}
|
||||
|
||||
#hero article {
|
||||
#about article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
@@ -195,7 +201,7 @@ article {
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
#hero h1 {
|
||||
#about h1 {
|
||||
color: var(--text-color-highlight);
|
||||
}
|
||||
|
||||
@@ -208,6 +214,8 @@ article {
|
||||
#projects .project-scroller {
|
||||
height: 100%;
|
||||
max-width: 100vw;
|
||||
scroll-snap-type: y mandatory;
|
||||
scroll-snap-align: start;
|
||||
}
|
||||
|
||||
#projects .project-scroller article {
|
||||
|
||||
Reference in New Issue
Block a user