Spaces:
Running
Running
File size: 2,161 Bytes
c6e21e7 cf89615 c6e21e7 cf89615 c6e21e7 cf89615 c6e21e7 cf89615 c6e21e7 |
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
document.addEventListener('DOMContentLoaded', function() {
// Slider functionality for homepage
const durationSlider = document.getElementById('duration-slider');
const durationValue = document.getElementById('duration-value');
const fpsSlider = document.getElementById('fps-slider');
const fpsValue = document.getElementById('fps-value');
const transitionStyle = document.getElementById('transition-style');
if (durationSlider && durationValue) {
durationSlider.addEventListener('input', function() {
durationValue.textContent = this.value;
});
}
if (fpsSlider && fpsValue) {
fpsSlider.addEventListener('input', function() {
fpsValue.textContent = this.value;
});
}
// Form submission handling
const forms = document.querySelectorAll('form');
forms.forEach(form => {
form.addEventListener('submit', function(e) {
e.preventDefault();
// In a real application, you would handle form submission here
alert('Form submitted successfully!');
});
});
// 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'
});
}
});
});
// Animation on scroll
const observerOptions = {
root: null,
rootMargin: '0px',
threshold: 0.1
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-fade-in');
observer.unobserve(entry.target);
}
});
}, observerOptions);
document.querySelectorAll('section').forEach(section => {
observer.observe(section);
});
});
|