【发布时间】:2011-10-16 06:23:47
【问题描述】:
我需要一些 jquery 帮助。我有一个简单的图片库,我想添加一些 jquery 效果(特别是淡入/淡出 #actimg 中的图像)。请记住,我对 jquery 不是很熟悉。
js
<script type="text/javascript">
function showPic (whichpic) {
if (document.getElementById) {
document.getElementById('actimg').src = whichpic.href;
return false;
} else {
return true;
}
}
</script>
和身体
<ul>
<li><a onclick="return showPic(this)" href="images/girl_01.jpg"><img height="50px" width="50px" src="images/girl_01.jpg" /></a></li>
<li><a onclick="return showPic(this)" href="images/girl_02.jpg"><img height="50px" width="50px" src="images/girl_02.jpg" /></a></li>
<li><a onclick="return showPic(this)" href="images/girl_03.jpg"><img height="50px" width="50px" src="images/girl_03.jpg" /></a></li>
</ul>
<img id="actimg" src="images/girl_04.jpg" alt="" />
【问题讨论】:
-
那里没有裸体女孩 :) ......只有时尚和东西的图片库。