Home › Forums › JavaScript › animate element during scroll – pleaaase help! › Re: animate element during scroll – pleaaase help!
October 19, 2012 at 7:15 pm
#112296
Participant
I’m not sure if you’re looking for the answer or hints…. so forgive me lol!
$(window).scroll($.debounce( 250, true, function(){
$(‘.sidetiggeriphone’).animate({
opacity: ‘1’
});
} ) );
$(window).scroll($.debounce( 250, function(){
$(‘.sidetiggeriphone’).animate({
opacity: ‘0.5’
});
} ) );