Reputation: 335
I am using this to fade out a div on scroll but its not working, 600 is the offset of the div. I cant figure out why this is not working.
$(window).scroll(function(){
wScroll = $(this).scrollTop();
$('.hack').css({
'transform' : 'translate(0px , ' + wScroll/2 +'%)',
'opactiy' : 1 - (wScroll/600)
});
});
Upvotes: 0
Views: 221