From 87f070be707a827749a910ac82b548be668c701a Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Mon, 11 Jul 2016 14:38:16 +0300 Subject: [PATCH] do not show intermediate loaded items on big smooth scroll --- test.htm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test.htm b/test.htm index 417e432..9ea6cd0 100644 --- a/test.htm +++ b/test.htm @@ -166,7 +166,8 @@ function renderitems() ih += '
'+(curFirst+i)+'
'; h += loadedItems[curFirst+i]; } - var t = Math.round(-loadedItems[curFirst]*curOffset+s.scrollTop); + // curPos, чтобы при плавном скролле вниз загруженное в середину не было видно + var t = Math.round(-loadedItems[curFirst]*curOffset+curPos); rc.style.height = '1px'; // на случай, если браузеру вздумается где-то посередине перерисовать rc.style.top = t+'px'; rc.style.height = (t+h < s.scrollHeight-1 ? h : s.scrollHeight-1-t)+'px';