• Shop Art
  • T-Shirts
  • SVG Files
  • Other Products
  • About Me
  • Contact
1 / 3
Caption Text
2 / 3
Caption Two
3 / 3
Caption Three


Landscapes

Black & White

Composits

Roan Mountain Favorites

Grandfather Mountain

Pet Fun

Fall Favorites

The Beauty of Flowers

TRUSTED

Info

Contact

Resources

Social

© Copyright 2024

All Rights Reserved

AT Design Labs

Hampton, TN 37658

Contact Form

About

Facebook

FAQ

Instagram

X

Pinterest

Image Carousel
Powered by ConvertriPowered by Convertrilet slideIndex = 0; let intervalId; // Variable to store setInterval ID function moveSlide(n) { slideIndex += n; showSlide(slideIndex); } function showSlide(n) { const slides = document.querySelectorAll('.slide'); if (n >= slides.length) { slideIndex = 0; } else if (n < 0) { slideIndex = slides.length - 1; } slides.forEach((slide) => { slide.style.transform = `translateX(-${slideIndex * 100}%)`; }); } // Function to start autoplay function startAutoplay() { intervalId = setInterval(() => { moveSlide(1); }, 3000); // Change slide every 3 seconds (adjust as needed) } // Function to stop autoplay function stopAutoplay() { clearInterval(intervalId); } // Start autoplay when the page loads startAutoplay(); // Stop autoplay when the carousel is hovered document.querySelector('.carousel').addEventListener('mouseenter', stopAutoplay); // Restart autoplay when the carousel is not hovered document.querySelector('.carousel').addEventListener('mouseleave', startAutoplay); document.querySelector('.prev').addEventListener('click', () => { moveSlide(-1); }); document.querySelector('.next').addEventListener('click', () => { moveSlide(1); });