fix scroll on center + select pic position

This commit is contained in:
2026-07-11 14:45:18 +03:30
parent d93f515183
commit 16bf755f6d
3 changed files with 212 additions and 58 deletions

View File

@@ -66,10 +66,6 @@
width: 100%; width: 100%;
} }
.media {
width: auto;
}
.result-section-box[data-card-count='4'] { .result-section-box[data-card-count='4'] {
grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-columns: repeat(2, minmax(0, 1fr));
} }

View File

@@ -1791,7 +1791,7 @@ textarea {
overflow: hidden; overflow: hidden;
} }
.media { .media {
height: 100%; height: 669px;
width: 100%; width: 100%;
object-fit: cover; object-fit: cover;
object-position: center; object-position: center;

View File

@@ -669,16 +669,99 @@ function goToSlide(index) {
}, 600); }, 600);
} }
showcase.addEventListener('wheel', function(e) { let isSectionPinned = false;
// استفاده از Intersection Observer برای فهمیدن اینکه چه زمانی سکشن وارد دید کامل می‌شود
const observer = new IntersectionObserver(
(entries) => {
entries.forEach((entry) => {
// زمانی که سکشن کاملاً یا بخش زیادی از آن در صفحه است
isSectionPinned = entry.isIntersecting;
});
},
{
threshold: 0.1, // حساسیت ورود سکشن به صفحه
}
);
observer.observe(showcase);
// showcase.addEventListener('wheel', function(e) {
// const currentTime = new Date().getTime();
// const isAtEnd = currentSlideIndex === totalSlides - 1;
// const isAtStart = currentSlideIndex === 0;
// const rect = showcase.getBoundingClientRect();
// if (rect.top > 5 && e.deltaY > 0) {
// return; // خارج شدن از تابع و اجازه به اسکرول عادی مرورگر برای بالا آوردن عکس
// }
// if (isAtStart && e.deltaY < 0 && rect.top >= 0) {
// return;
// }
// if ((e.deltaY > 0 && !isAtEnd) || (e.deltaY < 0 && !isAtStart)) {
// e.preventDefault();
// }
// if (isAnimating || (currentTime - lastScrollTime < scrollCooldown)) {
// return;
// }
// if (Math.abs(e.deltaY) < 10) return;
// if (e.deltaY > 0) {
// if (!isAtEnd) {
// lastScrollTime = currentTime;
// goToSlide(currentSlideIndex + 1);
// }
// } else {
// if (!isAtStart) {
// lastScrollTime = currentTime;
// goToSlide(currentSlideIndex - 1);
// }
// }
// }, { passive: false });
showcase.addEventListener(
'wheel',
function (e) {
const currentTime = new Date().getTime(); const currentTime = new Date().getTime();
const isAtEnd = currentSlideIndex === totalSlides - 1; const isAtEnd = currentSlideIndex === totalSlides - 1;
const isAtStart = currentSlideIndex === 0; const isAtStart = currentSlideIndex === 0;
// گرفتن موقعیت لحظه‌ای سکشن اصلی
const rect = showcase.getBoundingClientRect();
// ۱. بررسی حرکت از بالا به پایین:
// اگر کاربر رو به پایین اسکرول می‌کند ولی سرِ سکشن هنوز به بالای صفحه (سقف) نرسیده است
if (e.deltaY > 0 && rect.top > 5) {
return; // اجازه بده صفحه اسکرول طبیعی شود تا سکشن به سقف بچسبد
}
// ۲. بررسی حرکت از پایین به بالا:
// اگر کاربر رو به بالا اسکرول می‌کند ولی انتهای سکشن هنوز کاملاً بالا نیامده تا مماس شود
// فرمول: rect.bottom باید با ارتفاع پنجره (window.innerHeight) یا نقطه پایانی مماس باشد
if (e.deltaY < 0 && rect.bottom < window.innerHeight - 5) {
return; // اجازه بده صفحه طبیعی بالا برود تا سکشن در موقعیت درست قرار بگیرد
}
// ۳. مدیریت خروج از حالت اسلایدر وقتی به ابتدا یا انتها می‌رسیم:
// اگر در اسلاید اول هستیم و رو به بالا اسکرول می‌کنیم، بگذار صفحه بالا برود
if (isAtStart && e.deltaY < 0 && rect.top >= -5) {
return;
}
// اگر در اسلاید آخر هستیم و رو به پایین اسکرول می‌کنیم، بگذار صفحه پایین برود
if (isAtEnd && e.deltaY > 0 && rect.bottom <= window.innerHeight + 5) {
return;
}
// جلوگیری از اسکرول پیش‌فرض بدنه صفحه در طول انیمیشن اسلایدر
if ((e.deltaY > 0 && !isAtEnd) || (e.deltaY < 0 && !isAtStart)) { if ((e.deltaY > 0 && !isAtEnd) || (e.deltaY < 0 && !isAtStart)) {
e.preventDefault(); e.preventDefault();
} }
if (isAnimating || (currentTime - lastScrollTime < scrollCooldown)) { if (isAnimating || currentTime - lastScrollTime < scrollCooldown) {
return; return;
} }
@@ -695,14 +778,68 @@ showcase.addEventListener('wheel', function(e) {
goToSlide(currentSlideIndex - 1); goToSlide(currentSlideIndex - 1);
} }
} }
}, { passive: false }); },
{ passive: false }
);
showcase.addEventListener('touchstart', function(e) { showcase.addEventListener('touchstart', function(e) {
touchStartY = e.touches[0].clientY; touchStartY = e.touches[0].clientY;
touchStartX = e.touches[0].clientX; touchStartX = e.touches[0].clientX;
}, { passive: true }); }, { passive: true });
showcase.addEventListener('touchmove', function(e) { // showcase.addEventListener('touchmove', function(e) {
// if (!touchStartY) return;
// const currentTouchY = e.touches[0].clientY;
// const currentTouchX = e.touches[0].clientX;
// const diffY = touchStartY - currentTouchY;
// const diffX = touchStartX - currentTouchX;
// if (Math.abs(diffX) > Math.abs(diffY)) {
// return;
// }
// const rect = showcase.getBoundingClientRect();
// if (rect.top > 5 && diffY > 0) {
// return;
// }
// const isAtEnd = currentSlideIndex === totalSlides - 1;
// const isAtStart = currentSlideIndex === 0;
// if (isAtStart && diffY < 0 && rect.top >= 0) {
// return;
// }
// if ((diffY > 0 && !isAtEnd) || (diffY < 0 && !isAtStart)) {
// if (e.cancelable) e.preventDefault();
// } else {
// return;
// }
// const currentTime = new Date().getTime();
// if (isAnimating || (currentTime - lastScrollTime < scrollCooldown)) {
// return;
// }
// if (Math.abs(diffY) > 50) {
// if (diffY > 0) {
// if (!isAtEnd) {
// lastScrollTime = currentTime;
// goToSlide(currentSlideIndex + 1);
// }
// } else {
// if (!isAtStart) {
// lastScrollTime = currentTime;
// goToSlide(currentSlideIndex - 1);
// }
// }
// touchStartY = currentTouchY;
// }
// }, { passive: false });
showcase.addEventListener(
'touchmove',
function (e) {
if (!touchStartY) return; if (!touchStartY) return;
const currentTouchY = e.touches[0].clientY; const currentTouchY = e.touches[0].clientY;
@@ -715,9 +852,28 @@ showcase.addEventListener('touchmove', function(e) {
return; return;
} }
const rect = showcase.getBoundingClientRect();
// حرکت رو به پایین (انگشت به سمت بالا) و سکشن هنوز به سقف نرسیده
if (diffY > 0 && rect.top > 5) {
return;
}
// حرکت رو به بالا (انگشت به سمت پایین) و تهِ سکشن هنوز وارد کادر نشده
if (diffY < 0 && rect.bottom < window.innerHeight - 5) {
return;
}
const isAtEnd = currentSlideIndex === totalSlides - 1; const isAtEnd = currentSlideIndex === totalSlides - 1;
const isAtStart = currentSlideIndex === 0; const isAtStart = currentSlideIndex === 0;
if (isAtStart && diffY < 0 && rect.top >= -5) {
return;
}
if (isAtEnd && diffY > 0 && rect.bottom <= window.innerHeight + 5) {
return;
}
if ((diffY > 0 && !isAtEnd) || (diffY < 0 && !isAtStart)) { if ((diffY > 0 && !isAtEnd) || (diffY < 0 && !isAtStart)) {
if (e.cancelable) e.preventDefault(); if (e.cancelable) e.preventDefault();
} else { } else {
@@ -725,7 +881,7 @@ showcase.addEventListener('touchmove', function(e) {
} }
const currentTime = new Date().getTime(); const currentTime = new Date().getTime();
if (isAnimating || (currentTime - lastScrollTime < scrollCooldown)) { if (isAnimating || currentTime - lastScrollTime < scrollCooldown) {
return; return;
} }
@@ -743,7 +899,9 @@ showcase.addEventListener('touchmove', function(e) {
} }
touchStartY = currentTouchY; touchStartY = currentTouchY;
} }
}, { passive: false }); },
{ passive: false }
);
showcase.addEventListener('touchend', function() { showcase.addEventListener('touchend', function() {
touchStartY = 0; touchStartY = 0;