|
1 | | -<div align="center"> |
2 | | - <img width="100px" src="https://raw.githubusercontent.com/phucbm/scroll-direction/main/logo.svg" align="center" alt="Scroll Direction" /> |
3 | | - <h1 align="center">Scroll Direction</h1> |
4 | | - <p align="center">A lightweight jQuery plugin to detect scroll direction on your website. </p> |
5 | | -</div> |
6 | | - |
7 | | -<div align="center"> |
8 | | - <a href="https://jekyllrb.com/"> |
9 | | - <img src="https://img.shields.io/badge/Stable-v1.1.0-0088ff"> |
10 | | - </a> |
11 | | - <a href="https://www.jsdelivr.com/package/gh/phucbm/scroll-direction"> |
12 | | - <img src="https://data.jsdelivr.com/v1/package/gh/phucbm/scroll-direction/badge"> |
13 | | - </a> |
14 | | - </div> |
15 | | - |
16 | | -> **Update**: Scroll Direction now works with other libraries that hijack the native scrollbar (like Locomotive Scroll). |
| 1 | +# Scroll Direction v1.1.0 |
| 2 | +A lightweight jQuery plugin to detect scroll direction on your website. |
| 3 | + |
| 4 | +**Update**: Scroll Direction now works with other libraries that hijack the native scrollbar (like Locomotive Scroll). |
17 | 5 |
|
18 | 6 | **[View demo on CodePen →](https://codepen.io/phucbui/pen/yLaeqBw)** |
19 | 7 |
|
20 | 8 | ## Getting started |
21 | 9 |
|
22 | 10 | ### Download locally |
23 | 11 |
|
24 | | -You can [download the plugin directly from Github](https://raw.githubusercontent.com/phucbm/scroll-direction/main/scroll-direction.js). |
| 12 | +You can [download the plugin directly from Github](https://raw.githubusercontent.com/phucbm/jquery-scroll-direction-plugin/main/jquery.scroll-direction.js). |
25 | 13 |
|
26 | 14 | ```html |
27 | | -<script src="your-path/scroll-direction.js"></script> |
| 15 | +<script src="your-path/jquery.scroll-direction.js"></script> |
28 | 16 | ``` |
29 | 17 |
|
30 | 18 | ### Using CDN |
31 | 19 |
|
32 | | -You can also browse for the latest version by visiting [Scroll Direction on jsDelivr](https://cdn.jsdelivr.net/gh/phucbm/scroll-direction/) |
| 20 | +[](https://www.jsdelivr.com/package/gh/phucbm/jquery-scroll-direction-plugin) |
| 21 | + |
| 22 | +You can also browse for the latest version by visiting [Scroll Direction on jsDelivr](https://cdn.jsdelivr.net/gh/phucbm/jquery-scroll-direction-plugin/) |
33 | 23 |
|
34 | 24 | ```html |
35 | 25 | <!-- Scroll Direction - v1.1.0 --> |
36 | | -<script src="https://cdn.jsdelivr.net/gh/phucbm/scroll-direction@1.1.0/scroll-direction.js"></script> |
| 26 | +<script src="https://cdn.jsdelivr.net/gh/phucbm/jquery-scroll-direction-plugin@1.1.0/jquery.scroll-direction.js"></script> |
37 | 27 | ``` |
38 | 28 |
|
39 | 29 | or minified version |
40 | 30 |
|
41 | 31 | ```html |
42 | 32 | <!-- Scroll Direction - v1.1.0 --> |
43 | | -<script src="https://cdn.jsdelivr.net/gh/phucbm/scroll-direction@1.1.0/scroll-direction.min.js"></script> |
| 33 | +<script src="https://cdn.jsdelivr.net/gh/phucbm/jquery-scroll-direction-plugin@1.1.0/jquery.scroll-direction.min.js"></script> |
44 | 34 | ``` |
45 | 35 |
|
46 | 36 | ### Initialize Scroll Direction |
|
0 commit comments