35418-vm/assets/js/main.js
Flatlogic Bot 7802cd73eb por
2025-11-03 14:27:17 +00:00

18 lines
557 B
JavaScript

document.addEventListener('DOMContentLoaded', function() {
console.log('main.js loaded successfully.');
// Future JavaScript for animations, dynamic content, and game logic will go here.
// Example: 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'
});
});
});
});