Skip to content

Instantly share code, notes, and snippets.

@dompascal
Created December 6, 2013 13:59
Show Gist options
  • Save dompascal/7824237 to your computer and use it in GitHub Desktop.
Save dompascal/7824237 to your computer and use it in GitHub Desktop.
JS - Thumb opacity hover toggle
//thumb opacity hover toggle
$('.thumb, li.product').fadeTo(500, 0.5);
$('.thumb, li.product').hover(function(){
$(this).fadeTo(500,1.0);
}, function(){
$(this).fadeTo(500,0.5);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment