KO
|
EN
gitlite — search
Search
#javascript
#nodejs
#php
#react
#docker
#java
#cli
#golang
#go
#osx
#tool
#size
noscroll
★ 28
Open GitHub ↗
Disable scrollbar on your web-page
Download README (.md)
Explore Similar Repositories
ModPrompt
:
[ICCV2025] ModPrompt: Visual Modality Prompt for Adapting Vision-Language Object Detectors
Parser-DRM
:
Device File Parser (PlayReady & Widevine)
personal-blog
:
No description available.
JNU_CourseSnatcher
:
暨南大学抢课脚本
DOL-Custom-Spellbook-Mod
:
DOL游戏的自定义魔法书(言灵集)模组
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
noscroll
?
Download (.md)
# @fluejs/noscroll [<img src="https://pkg-size.dev/badge/bundle/4459">](https://pkg-size.dev/@fluejs%2Fnoscroll) [<img src="https://img.shields.io/npm/v/@fluejs/noscroll.svg">](https://www.npmjs.com/package/@fluejs/noscroll) <img src="https://img.shields.io/npm/l/@fluejs/noscroll"> TypeScript-based and improved version of the [scroll-lock](https://github.com/FL3NKEY/scroll-lock) library, designed to address issues like content shifting and quirks in iOS Safari when disabling scrollbar on web pages. [Documentation & demo](https://noscroll.fl3nkey.com/) ## Installation ```shell # npm npm install --save-dev @fluejs/noscroll # yarn yarn add -D @fluejs/noscroll ``` ```ts import {disablePageScroll, enablePageScroll} from '@fluejs/noscroll'; // disable page scroll disablePageScroll(); // enable page scroll enablePageScroll(); ```