Jquery Letter spacing
Jquery Letter spacing
i want to animate text with scroll down.
i apply this code.this is working.
if scrolled = -16
my text color id Red , but again scroll top -5 , still color is red,
Please help me.
Thank you.
$(function(){
$(window).scroll(function() {
var scrolled=-($(window).scrollTop())/50;
$('#scrolled').text('scrolled: '+scrolled+'px');
if(scrolled>-10){ $('#cName').css({'letter-spacing':12+scrolled+'px'}); }
else{$('#cName').css({'color':'red'});}
});
});
Topic Participants
htdishan1
nigelhilluk