mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
27 lines
897 B
JavaScript
27 lines
897 B
JavaScript
|
const contentPage = document.querySelector(".page_content");
|
||
|
const rootElement = document.documentElement;
|
||
|
|
||
|
let smallBlockObserver = new IntersectionObserver(entries => {
|
||
|
entries.forEach(x => {
|
||
|
window.requestAnimationFrame(() => {
|
||
|
let pastHeight = contentPage.getBoundingClientRect().height;
|
||
|
if(x.isIntersecting)
|
||
|
contentPage.classList.remove("overscrolled");
|
||
|
else
|
||
|
contentPage.classList.add("overscrolled");
|
||
|
|
||
|
let currentHeight = contentPage.getBoundingClientRect().height;
|
||
|
let ratio = currentHeight / pastHeight;
|
||
|
|
||
|
rootElement.scrollTop *= ratio;
|
||
|
}, contentPage);
|
||
|
});
|
||
|
}, {
|
||
|
root: null, // screen
|
||
|
rootMargin: "0px",
|
||
|
threshold: 0
|
||
|
});
|
||
|
|
||
|
let smol = document.querySelector('div[class$="_small_block"]');
|
||
|
if(smol != null)
|
||
|
smallBlockObserver.observe(smol);
|