pixelportfolio-pro / script.js
Scroll26's picture
make a multi page portfolio, a main page for highlights and overview, a page for all projects listed with cards and previews, and individual pages for all projects.
fe3d38d verified
raw
history blame contribute delete
487 Bytes
// Shared JavaScript functionality
document.addEventListener('DOMContentLoaded', function() {
// 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'
});
});
});
// Add any shared JS functionality here
});