Add Events to the README
This commit is contained in:
parent
3b90c734e4
commit
2ef7e81ce9
35
README.md
35
README.md
@ -312,6 +312,41 @@ The number of pixels the content height can surpass the container height without
|
|||||||
When set to false, when clicking on a rail, the click event will be allowed to propagate.
|
When set to false, when clicking on a rail, the click event will be allowed to propagate.
|
||||||
**Default: true**
|
**Default: true**
|
||||||
|
|
||||||
|
## Events
|
||||||
|
|
||||||
|
perfect-scrollbar dispatches custom events.
|
||||||
|
|
||||||
|
### 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.
|
||||||
|
|
||||||
|
You can listen to these events either with vanilla JavaScript
|
||||||
|
```javascript
|
||||||
|
document.addEventListener('ps-scroll-x', function () {
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
```
|
||||||
|
or with jQuery
|
||||||
|
```javascript
|
||||||
|
$(document).on('ps-scroll-x', function () {
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## Contribution
|
## Contribution
|
||||||
|
|
||||||
#### Please read [Contributing](https://github.com/noraesae/perfect-scrollbar/wiki/Contributing) in the wiki before making any contribution.
|
#### Please read [Contributing](https://github.com/noraesae/perfect-scrollbar/wiki/Contributing) in the wiki before making any contribution.
|
||||||
|
Loading…
Reference in New Issue
Block a user