scrollTop and scrollBottom
firstly, when scroll is down i wanna div element moves to right,
when scroll is top wanna div element moves to left.
how can i do that?
var $win = $(window);
$win.scroll(function () {
if ($win.scrollTop() > 0)
{
$
(
".Ax"
).
animate
({
"left"
:
"+=50px"
},
"slow"
); });