chore: optimize scroll threshold for reaching bottom

This commit is contained in:
Hakadao
2024-06-30 14:32:40 +08:00
parent e91549f584
commit 4ed28ce50c

View File

@@ -215,7 +215,7 @@ function handleOsScroll() {
reachTop.value = false
}
if (clientHeight + scrollTop >= scrollHeight - 150)
if (clientHeight + scrollTop >= scrollHeight - 300)
handleThrottledReachBottom()
if (isHomePage())