Inital Commit

This commit is contained in:
root
2025-06-24 15:43:32 +02:00
commit 23341b8abb
4657 changed files with 549083 additions and 0 deletions

19
html/drone/js/main.js Normal file
View File

@@ -0,0 +1,19 @@
// This file contains the main JavaScript code for the website, handling general interactivity and functionality.
document.addEventListener('DOMContentLoaded', () => {
// Initialize any necessary components or features
console.log('Roof Drone Cleaning Website Loaded');
// Example: Smooth scroll for anchor links
const scrollLinks = document.querySelectorAll('a[href^="#"]');
scrollLinks.forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
targetElement.scrollIntoView({ behavior: 'smooth' });
});
});
// Additional functionality can be added here
});