code_junkie

jQuery Queueing Animations

Nov 14th, 2011
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $(".thumbs img").fadeTo("slow", 0.3);
  2.  
  3. $(".thumbs img").hover(function(){
  4. $(this).fadeTo("normal", 1.0);
  5. },function(){
  6. $(this).fadeTo("slow", 0.3);
  7. });
  8.  
  9. $(".thumbs img").stop().fadeTo("slow", 0.3);
  10.  
  11. $(".thumbs img").hover(function(){
  12. $(this).stop().fadeTo("normal", 1.0);
  13. },function(){
  14. $(this).stop().fadeTo("slow", 0.3);
  15. });
Add Comment
Please, Sign In to add comment