mirror of
https://github.com/openvk/openvk
synced 2024-12-23 00:51:03 +03:00
7d450c18fd
* Make audio player pizdatey * Simple ajax routing (scripts are broken) * Fix most common script problems pt1 * Add ajax player Осталось пофиксить скрипты и создание плейлистов! Ну и ещё некоторые хуйни по аудиозаписям которые я задумал. * Add context menu for audios * Refactor audio upload page * Repair playlists * Fix main problems * Midnight teme adaptation * Stupid bug fix * Save audios list in da localstorage and fix msgbox * Fix time setting * add beforeUnload event * Stupid bugs fix * update page footer on transition * fix wall publihing * fix 500 on non existent page
34 lines
No EOL
1.4 KiB
JavaScript
34 lines
No EOL
1.4 KiB
JavaScript
const rootElement = document.documentElement;
|
||
|
||
// охуенное название файла, КТО ЭТО ПРИДУМАЛ КРАСАВА Я ИЗ КОМНАТЫ С ЭТОГО УЛЕТЕЛ НАХУЙ
|
||
|
||
let scrolledAndHidden = false;
|
||
|
||
let smallBlockObserver = new IntersectionObserver(entries => {
|
||
entries.forEach(x => {
|
||
window.requestAnimationFrame(() => {
|
||
let pastHeight = u('.page_content').nodes[0].getBoundingClientRect().height;
|
||
if(x.isIntersecting)
|
||
u('.page_content').nodes[0].classList.remove("overscrolled");
|
||
else
|
||
u('.page_content').nodes[0].classList.add("overscrolled");
|
||
|
||
// let currentHeight = contentPage.getBoundingClientRect().height;
|
||
// let ratio = currentHeight / pastHeight;
|
||
|
||
// rootElement.scrollTop *= ratio;
|
||
|
||
// То что я задокументировал - работает мегакриво.
|
||
// Пусть юзер и проскролливает какую-то часть контента, зато не получит
|
||
// эпилепсии при использовании :)
|
||
}, u('.page_content').nodes[0]);
|
||
});
|
||
}, {
|
||
root: null, // screen
|
||
rootMargin: "0px",
|
||
threshold: 0
|
||
});
|
||
|
||
let smol = document.querySelector('div[class$="_small_block"]');
|
||
if(smol != null)
|
||
smallBlockObserver.observe(smol); |