今天练习了个Jquery淡入淡出的特性代码如下:
代码如下:
无标题文档 script>
$(document).ready(function(){
$("#gallery2 a").append("");
$("#gallery2 a").hover(function(){
$(this).children("span").fadeIn(600);
},function(){
$(this).children("span").fadeOut(200);
});
});
script>
CSS solution
jQuery solution
用到的图片:



一个淡入淡出小例子:
代码如下: