Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript animate element during scroll – pleaaase help! Re: animate element during scroll – pleaaase help!

#112296
wmwood
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’
});
} ) );