Update 1.js

This commit is contained in:
FURK4NGG
2024-11-26 23:41:30 +03:00
committed by GitHub
parent 9d60214b10
commit be13c36fc0
+6 -5
View File
@@ -3,18 +3,18 @@ const boxes = document.querySelectorAll('.services_id');
// Görünürlük kontrol fonksiyonu
function checkVisibility() {
const triggerBottom = window.innerHeight * 0.8; // Ekranın %80'i tetik noktası
const triggerBottom = window.innerHeight * 0.8; // Tetik noktası: ekranın alt %80'i
boxes.forEach((box) => {
const boxTop = box.getBoundingClientRect().top;
const boxBottom = box.getBoundingClientRect().bottom;
if (boxTop < triggerBottom && boxBottom > 0) {
// Kutucuk ekranın içinde ise görünür yap
if (boxTop < triggerBottom && boxBottom > triggerBottom / 2) {
// Kutucuk ekranın alt kısmında ise görünür yap
box.classList.add('visible');
box.classList.remove('hidden');
} else {
// Kutucuk ekran dışında ise gizle
} else if (boxBottom <= triggerBottom / 2) {
// Kutucuk ekranın üst kısmına çıktığında gizle
box.classList.remove('visible');
box.classList.add('hidden');
}
@@ -26,6 +26,7 @@ window.addEventListener('scroll', checkVisibility);
window.addEventListener('load', checkVisibility);
/*IMAGE CHANGER*/
let currentIndex = 0;
const images = document.querySelectorAll('#photo img');