/ Published in: jQuery
URL: http://bavotasan.com/tutorials/jquery-simple-animated-fade-effect/
Expand |
Embed | Plain Text
<script type="text/javascript"> $(document).ready(function(){ $("img").hover(function() { $(this).stop().animate({opacity: "0.8"}, 'slow'); }, function() { $(this).stop().animate({opacity: "1"}, 'slow'); }); }); </script>
You need to login to post a comment.
