Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Minimalistic but perfect custom scrollbar plugin

License

NotificationsYou must be signed in to change notification settings

xidedix/perfect-scrollbar

 
 

Repository files navigation

Minimalistic but perfect custom scrollbar plugin

npmTravis CI

To read documentation for versions < 1.0, please visitv0.8.1.

Why perfect-scrollbar?

perfect-scrollbar is minimalistic butperfect (for me, and maybe for mostdevelopers) scrollbar plugin.

  • No change on design layout
  • No manipulation on DOM tree
  • Use plainscrollTop andscrollLeft
  • Scrollbar style is fully customizable
  • Efficient update on layout change

I hope you love it!

Demo

It's on theGitHub Pages.

Table of Contents

Install

npm

The best way to install and use perfect-scrollbar is with npm. It's registeredasperfect-scrollbar.

$ npm install perfect-scrollbar

Manual download

You can manually download perfect-scrollbarfromReleases.

From sources

If you want to use the development version of the plugin, build from sourcemanually. The development version may be unstable.

$ git clone https://github.com/utatti/perfect-scrollbar.git$ cd perfect-scrollbar$ npm install$ npm run build

JSFiddle

You can fork the following JSFiddles for testing and experimenting purposes:

Unofficial sources

Sources not mentioned above are not maintained officially. If there are issuesof the following sources, please ask and resolve in each repository.

Before using perfect-scrollbar

The following requirements should meet.

  • the container must have aposition style.
  • the container must be a normal container element.

The following requirements are included in the basic CSS, but please keep inmind when you'd like to change the CSS files.

  • the container must have anoverflow: hidden css style.
  • the scrollbar's position must beabsolute.
  • the scrollbar-x must havebottom ortop, and the scrollbar-y must haveright orleft.

Finally, scroll hooking is generally considered as a bad practice, andperfect-scrollbar should be used carefully. Unless custom scroll is reallyneeded, using browser-native scroll is always recommended.

Caveats

perfect-scrollbar emulates some scrolls, but not all of the kinds. It alsodoes not workin some situations. You can find these cases inCaveats.Basically, items listed in the caveats are hacky to implement and may not beimplemented in the future. If the features are really needed, please considerusing browser-native scroll.

How to use

First of all, please check if the container element meets the requirements andthe main CSS is imported.

<style>#container {position: relative;width:600px;height:400px;  }</style><linkrel="stylesheet"href="css/perfect-scrollbar.css">

Import via ES modules:

importPerfectScrollbarfrom'perfect-scrollbar';

Or in browser:

<scriptsrc="dist/perfect-scrollbar.js"></script>

To initialise:

constcontainer=document.querySelector('#container');constps=newPerfectScrollbar(container);// or just with selector stringconstps=newPerfectScrollbar('#container');

It can be initialised withoptions.

constps=newPerfectScrollbar('#container',{wheelSpeed:2,wheelPropagation:true,minScrollbarLength:20});

If the size of your container or content changes, callupdate.

ps.update();

If you want to destroy the scrollbar, usedestroy.

ps.destroy();ps=null;// to make sure garbages are collected

If you want to scroll to somewhere, just updatescrollTop.

constcontainer=document.querySelector('#container');container.scrollTop=0;

You can also get information about how to use the plugin from code inexamples/.

Options

handlers {String[]}

It is a list of handlers to scroll the element.

Default:['click-rail', 'drag-thumb', 'keyboard', 'wheel', 'touch']

wheelSpeed {Number}

The scroll speed applied to mousewheel event.

Default:1

wheelPropagation {Boolean}

If this option is true, when the scroll reaches the end of the side, mousewheelevent will be propagated to parent element.

Default:false

swipeEasing {Boolean}

If this option is true, swipe scrolling will be eased.

Default:true

minScrollbarLength {Number?}

When set to an integer value, the thumb part of the scrollbar will not shrinkbelow that number of pixels.

Default:null

maxScrollbarLength {Number?}

When set to an integer value, the thumb part of the scrollbar will not expandover that number of pixels.

Default:null

scrollingThreshold {Number}

This sets threashold forps--scrolling-x andps--scrolling-y classes toremain. In the default CSS, they make scrollbars shown regardless of hoverstate. The unit is millisecond.

Default:1000

useBothWheelAxes {Boolean}

When set to true, and only one (vertical or horizontal) scrollbar is visiblethen both vertical and horizontal scrolling will affect the scrollbar.

Default:false

suppressScrollX {Boolean}

When set to true, the scroll bar in X axis will not be available, regardless ofthe content width.

Default:false

suppressScrollY {Boolean}

When set to true, the scroll bar in Y axis will not be available, regardless ofthe content height.

Default:false

scrollXMarginOffset {Number}

The number of pixels the content width can surpass the container width withoutenabling the X axis scroll bar. Allows some "wiggle room" or "offset break", sothat X axis scroll bar is not enabled just because of a few pixels.

Default:0

scrollYMarginOffset {Number}

The number of pixels the content height can surpass the container height withoutenabling the Y axis scroll bar. Allows some "wiggle room" or "offset break", sothat Y axis scroll bar is not enabled just because of a few pixels.

Default:0

Events

perfect-scrollbar dispatches custom events.

container.addEventListener('ps-scroll-x',()=> ...);

ps-scroll-y

This event fires when the y-axis is scrolled in either direction.

ps-scroll-x

This event fires when the x-axis is scrolled in either direction.

ps-scroll-up

This event fires when scrolling upwards.

ps-scroll-down

This event fires when scrolling downwards.

ps-scroll-left

This event fires when scrolling to the left.

ps-scroll-right

This event fires when scrolling to the right.

ps-y-reach-start

This event fires when scrolling reaches the start of the y-axis.

ps-y-reach-end

This event fires when scrolling reaches the end of the y-axis (useful forinfinite scroll).

ps-x-reach-start

This event fires when scrolling reaches the start of the x-axis.

ps-x-reach-end

This event fires when scrolling reaches the end of the x-axis.

You can also watch the reach state via thereach property.

constps=newPerfectScrollbar(...);console.log(ps.reach.x);// => 'start' or 'end' or nullconsole.log(ps.reach.y);// => 'start' or 'end' or null

Helpdesk

If you have any idea to improve this project or any problem using this, pleasefeel free to upload anissue.

For common problems, there is aFAQ wikipage. Please check the page before uploading an issue.

Also, the project is not actively maintained. No maintainer is paid, and most ofus are busy on our professional or personal works. Please understand that it maytake a while for an issue to be resolved. Uploading a PR would be the fastestway to fix an issue.

IE Support

The plugin is developed to work in modern MS browsers including Edge and IE11,but may have some issues in IE11 mainly because of IE rendering bug concerningsync update on scroll properties. The problem is mentioned inCaveats too.

IE<11 is not supported, and patches to fix problems in IE<=10 will not beaccepted. When old IEs should be supported, please fork the project and makemodification locally.

License

MIT

About

Minimalistic but perfect custom scrollbar plugin

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript92.0%
  • CSS6.4%
  • Shell1.6%

[8]ページ先頭

©2009-2025 Movatter.jp