old reddit sidebar hider

hides the sidebar of old reddit when you scroll down

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name     old reddit sidebar hider
// @description hides the sidebar of old reddit when you scroll down
// @version  1
// @grant    none
// @match    https://old.reddit.com/*
// @namespace https://greasyfork.org/users/1322440
// ==/UserScript==


let lastScrollTop = 0;
const targetElement = document.querySelector('.side');
const content = document.querySelector('body > .content');

function checkScrollDirection() {
  const scrollTop = window.pageYOffset || document.documentElement.scrollTop;
  if (scrollTop > 10){
    targetElement.style.display = 'none';
    content.style.margin = '16px 16px 64px 16px';
  } else {
    targetElement.style.display = 'block';
    content.style.margin = '16px 352px 64px 16px';
  }
  lastScrollTop = scrollTop <= 0? 0 : scrollTop; // For Mobile or negative scrolling
}

window.addEventListener('scroll', checkScrollDirection);