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

Update Readme.md added examples for getters/setters #138

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,16 @@ The maximum Y scroll position. This defines the bottom-most position of the scro
user can drag past the maximum Y, but then the scroller will snap-back to the maximum
Y position.

##### Example usage of iscroll getters/setters :

```javascript

$('.example-wrapper').iscrollview('y'));/* Returns the current y position of the scroller */
$('.example-wrapper').iscrollview('minScrollY',-20); /* Sets the min Y scroll position to -20 */
$('.example-wrapper').iscrollview('scrollerH');/* Returns the height of the scroller in pixels */
$('.example-wrapper').iscrollview('wrapperH');/* Returns the height in pixels of the wrapper*/

```
---

Public Members
Expand Down