Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

distinguish "toBottom" and 'toBottom with bottom-threshold","totop" and 'toBottom with top-threshold" #411

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,24 @@ More usages or getting start you can refer to these clearly [examples](https://g
<td></td>
<td>Emited when scrolled to top or left, no param.</td>
</tr>
<tr>
<td><code>toThresholdTop</code></td>
<td>Event</td>
<td></td>
<td>Emited when scrolled to top or left with topThreshold, no param.</td>
</tr>
<tr>
<td><code>tobottom</code></td>
<td>Event</td>
<td></td>
<td>Emited when scrolled to bottom or right, no param.</td>
</tr>
<tr>
<td><code>toThresholdBottom</code></td>
<td>Event</td>
<td></td>
<td>Emited when scrolled to bottom or right with bottomThreshold, no param.</td>
</tr>
<tr>
<td><code>resized</code></td>
<td>Event</td>
Expand All @@ -214,13 +226,13 @@ More usages or getting start you can refer to these clearly [examples](https://g
<td><code>top-threshold</code></td>
<td>Number</td>
<td>0</td>
<td>The threshold to emit <code>totop</code> event, attention to multiple calls.</td>
<td>The threshold to emit <code>toThresholdTop</code> event, attention to multiple calls.</td>
</tr>
<tr>
<td><code>bottom-threshold</code></td>
<td>Number</td>
<td>0</td>
<td>The threshold to emit <code>tobottom</code> event, attention to multiple calls.</td>
<td>The threshold to emit <code>toThresholdBottom</code> event, attention to multiple calls.</td>
</tr>
<tr>
<td><code>root-tag</code></td>
Expand Down
Loading