日期:2014-05-16 浏览次数:20352 次
<script type="text/javascript" src="./js/jquery.js"></script>
<script language="javascript" type="text/javascript">
window.onerror=function(){return true;}
$(document).ready(function() {
$('.goodList a img').each(function() {
$(this).hover(function() {
$(this).stop().animate({ opacity: 0.5 }, 400);
},
function() {
$(this).stop().animate({ opacity: 1.0 }, 400);
});
}); });
</script>
<div class="goodList"><a href="#"><img src="http://info-database.csdn.net/Upload/2013-03-01/ibm-unix-475-60-0301.jpg" /></a></div>
<script type="text/javascript" src="http://www.coding123.net/js/jquery.js"></script>
<script language="javascript" type="text/javascript">
window.onerror = function () { return true; }
$(document).ready(function () {
$('.goodList a img').each(function () {
$(this).hover(function () {
$(this).stop().animate({ opacity: 0.5 }, 400);
},
function () {
$(this).stop().animate({ opacity: 1.0 }, 400);
});
});
});
</script>