Jquery color fade plugin


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. // Fade from yellow to white
  2. $('p').color_fade();
  3.  
  4. // Fade from blue to white
  5. $('p').color_fade({from:'blue',to:'white'});
  6.  
  7. // Fade from black to white, real fast
  8. $('p').color_fade({from'black',to:'white',speed:100});

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.