This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| document.addEventListener('DOMContentLoaded', () => { | |
| const images = Array.from(document.querySelectorAll('img')); | |
| // Kaydırma mantığını yöneten ana fonksiyon | |
| const navigate = (direction, currentImg) => { | |
| const currentIndex = images.indexOf(currentImg); | |
| const targetImg = direction === 'next' ? images[currentIndex + 1] : images[currentIndex - 1]; | |
| if (targetImg) { | |
| targetImg.scrollIntoView({ behavior: 'smooth', block: 'start' }); |