Spaces:
Running
Running
File size: 1,021 Bytes
5420716 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
// Simple animations for interactive elements
document.addEventListener('DOMContentLoaded', function() {
// Add hover effect to buttons
const buttons = document.querySelectorAll('a[href], button');
buttons.forEach(button => {
button.addEventListener('mouseenter', () => {
button.classList.add('transform', 'scale-105', 'transition', 'duration-300');
});
button.addEventListener('mouseleave', () => {
button.classList.remove('transform', 'scale-105');
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
window.scrollTo({
top: target.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
}); |