ghoststack-finder / script.js
flen-crypto's picture
Locked in. I’ve set the lease-term scoring window to **25 years** and delivered both items—bootstrap + full data-run tooling—so your devs can execute immediately.
93cbe09 verified
raw
history blame contribute delete
678 Bytes
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Header scroll effect
window.addEventListener('scroll', () => {
const header = document.querySelector('header');
if (window.scrollY > 50) {
header.classList.add('scrolled');
} else {
header.classList.remove('scrolled');
}
});
// Initialize feather icons
document.addEventListener('DOMContentLoaded', () => {
feather.replace();
});