Ariyan-Pro's picture
make it more futuristic, modern by adding 3D components
4d9f2a7 verified
raw
history blame contribute delete
513 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'
});
});
});
// Parallax effect for floating elements
window.addEventListener('scroll', () => {
const scrollY = window.scrollY;
const floatingElements = document.querySelectorAll('.floating-cube, .floating-sp