The Html :
<div data-role="page" id="index">
<div data-theme="b" data-role="header" data-position="fixed">
<h1 class="header">Index page</h1>
</div>
<div data-role="content">
<div class="example-wrapper" data-iscroll>
<ul data-role="listview">
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
</ul>
</div>
</div>
<div data-theme="b" data-role="footer">
<h1><a href="#" class="top">Footer</a></h1>
</div>
</div>
The following is the javascript to move the scrollbar. But i want to retrieve the position of the scrollbar after it has moved:
$(document).on('click','a.top',function(){
$(".example-wrapper").iscrollview("scrollTo", 0, 100, 200, true);
console.log($('.iscroll-wrapper').iscrollview('option','y'));
});
Checkout this fiddle.
iScrollview wraps content in a
.iscroll-scroller
div, and usestransform()
to scroll that div. You need to retrievetransform
CSS property of the aforementioned div.The above will return a
matrix(1, 0, 0, 1, x, y)
, andy
carries the value of vertical transform/translate. Then you need to.split(" ")
matrix and convert it into an array to be able to read it.The array will look like this
Then just
parseInt(string, radix)
last value in array, (matrix.length - 1
= index of last value).(1)
setTimeout()
is used in demo to delay retrievingposY
after animation (transform) is done.