const imageCount = 3 const slidePhoto = (imageCount) => { let count = 1; let photoUlTag = document.querySelector(".visual_img"); for (var i=0; i { photoUlTag.style.left = (parseFloat(photoUlTag.style.left) - (photoUlTag.offsetWidth / imageCount)) + "px"; count++; if (count > imageCount) { count = 1; photoUlTag.style.left = "0px"; } }, 3300); } slidePhoto(imageCount)