
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
beautify-scrollbar
Advanced tools
Beautify browser's scrollbars.
npm:
npm i --save beautify-scrollbar
or yarn
yarn add beautify-scrollbar
import 'beautify-scrollbar/dist/index.css';
import BeautifyScrollbar from 'beautify-scrollbar';
const container = document.querySelector('#container')
const bs = new BeautifyScrollbar(container);
// or
const bs = new BeautifyScrollbar('#container');
// or with options
const bs = new BeautifyScrollbar('#container', {
wheelSpeed: 2
});
Visit the examples.
Note: the height of this container element which is returned by
getBoundingClientRect()
can not be 0, it must hava aheight
style.
Type: Number
Default: 1
The scroll speed applied to mousewheel event.
Type: Number
Default: 1
The threshold value to trigger next-fetch in infinite scrolling.
Type: Boolean
Default: true
When set to false, the scroll bar in X axis will not be available, regardless of the content width.
Type: Boolean
Default: true
When set to false, the scroll bar in Y axis will not be available, regardless of the content height.
Type: Number
Default: undefined
When set to an integer value, the X thumb part of the scrollbar will not expand over that number of pixels.
Type: Number
Default: undefined
When set to an integer value, the Y thumb part of the scrollbar will not expand over that number of pixels.
beautify-scrollbar
dispatches custom events.
container.addEventListener('bs-x-reach-end', () => ..., false);
bs-y-reach-start
This event fires when scrolling reaches the start of the y-axis.
bs-y-reach-end
This event fires when scrolling reaches the end of the y-axis.
bs-x-reach-start
This event fires when scrolling reaches the start of the x-axis.
bs-x-reach-end
This event fires when scrolling reaches the end of the x-axis.
bs-update-scroll-value
This event fires when scrollLeft or scrollTop is updated.
bs-reach-threshold
This event fires when diff-value
is lte the options.threshold
.
diff-value = container.scrollHeight - container.scrollTop - container.height
Update some props of instance when you need. Maybe it's useful when it combines with v2-lazy-list;
Destroy the instance and will unbind events whose instance bind.
git clone git@github.com:dwqs/beautify-scrollbar.git
cd beautify-scrollbar
npm i
npm run dev
MIT
FAQs
Beautify browser's scrollbars
The npm package beautify-scrollbar receives a total of 168 weekly downloads. As such, beautify-scrollbar popularity was classified as not popular.
We found that beautify-scrollbar demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.