Compare commits
No commits in common. "46defc69d1d720d38911c7afd764bcfc00987820" and "e47aef5b74d8b6ce8b7ea6e7b4ed5788dcb8ff4a" have entirely different histories.
46defc69d1
...
e47aef5b74
|
@ -29,24 +29,4 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
|
||||||
document.addEventListener('DOMContentLoaded', function () {
|
|
||||||
let pathSegment = window.location.pathname.split('/')[1];
|
|
||||||
|
|
||||||
if (pathSegment.endsWith('.html')) {
|
|
||||||
pathSegment = pathSegment.replace('.html', '');
|
|
||||||
}
|
|
||||||
|
|
||||||
const navLinks = document.querySelectorAll('.header-page-links li a');
|
|
||||||
|
|
||||||
navLinks.forEach(link => {
|
|
||||||
let linkPath = link.getAttribute('href').replace('/', '').replace('.html', '');
|
|
||||||
|
|
||||||
if (linkPath === pathSegment) {
|
|
||||||
link.classList.add('active');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
</script>
|
|
||||||
</header>
|
</header>
|
||||||
|
|
|
@ -504,10 +504,6 @@ hr {
|
||||||
transition: transform 0.5s ease;
|
transition: transform 0.5s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-page-links a.active {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-page-links a:hover {
|
.header-page-links a:hover {
|
||||||
transform: translateY(-2px);
|
transform: translateY(-2px);
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
|
Loading…
Reference in New Issue