我有以下的HTML頁:jquery的DIV背景淡入
<body>
<div class="hide1" style="width:1000px; height:1000px;">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2" align="center">Heading</td>
</tr>
<tr>
<td width="51%">Left1</td>
<td width="49%">right 1 </td>
</tr>
<tr>
<td>Left 2 </td>
<td>right 2 </td>
</tr>
</table>
</div>
</body>
類hide1
是:
<style>
.hide1 {
background: url(back.png) no-repeat;
}
</style>
和jQuery的功能是:
<script>
$(document).ready(function(){
$("div.mover").click(function() {
$("div.hide1").fadeTo("slow", 0.33);
});
});
</script>
我的問題是,整個頁面消失。但我只想淡入div的背景圖像。我如何做到這一點?
完美地工作... – air 2009-10-21 14:45:48