NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Shiki Scroll Menu // @namespace http://shikimori.one/ // @version 1.2 // @description Hides menu on shikimori.one based on page scroll // @author SergejVolkov // @match http://shikimori.me/* // @match https://shikimori.me/* // @license MIT // @grant none // ==/UserScript== var prevScrollpos = window.pageYOffset; var menuOffset = "-" + getComputedStyle(document.querySelector(".l-top_menu-v2")).height; window.onscroll = function () { var currentScrollPos = window.pageYOffset; if (prevScrollpos - currentScrollPos > 5) { document.querySelector(".l-top_menu-v2").style.top = "0"; } else if (prevScrollpos - currentScrollPos < -5) { document.querySelector(".l-top_menu-v2").style.top = menuOffset; } prevScrollpos = currentScrollPos; }