我正在尝试制作一个只有3张图片的简单jQuery图库,如下图所示。
我翻译成这样:
if thumb clicked -> this thumb -> become big
current big -> become thumb
问题是我不知道我翻译的方式怎么样似乎是正确的?
谢谢
答案 0 :(得分:2)
请试试这个:
<html>
<head>
<title>Simple Gallery</title>
<script src="jquery.js"></script>
<script>
function ChangeThis(getThumb)
{
for(var i=1;i<=3;i++)
{
if(getThumb == i)
{
$("#bigView").html("<img src='img"+i+"' />");
$("#thumb"+i).hide();
}
else
{
$("#thumb"+i).show();
}
}
}
</script>
<style>
#bigView{width:100px;height:100px;}
.thumb{width:30px;height:30px}
</style>
</head>
<body>
<table><tr><td colspan="3">
<div id="bigView"><img src='img1'></div>
</td></tr>
<tr>
<td><div id="thumb1" class="thumb" onclick="ChangeThis(1);" style="display:none;"><img src='img1' /></div></td>
<td><div id="thumb2" class="thumb" onclick="ChangeThis(2);"><img src='img2' /></div></td>
<td><div id="thumb3" class="thumb" onclick="ChangeThis(3);"><img src='img3' /></div></td>
</tr>
</table>