我有3张图片,我想通过点击箭头图片来更改这些图片,但我遇到了问题。
我创建了一些跟踪器来保存图片地址,但它不起作用。
当我使用此功能时,它只是将图片从第一张图片更改为第三张图片。所以我不能连续显示3张图片
我需要的是当我点击箭头图像来改变连续的图片,如第一张图片,第二张图片和第三张图片。
function change(){
img_tracer = new Array () ;
img_tracer[0] = '1';
img_tracer[1] = '2';
img_tracer[2] = '3';
images = new Array ();
images[0] = document.getElementById('tech').src = "images1.jpg";
images[1] = document.getElementById('tech').src = "images2.jpg";
images[2] = document.getElementById('tech').src = "images3.jpg";
if ( images[0] )
img_tracer[0];
else if ( images[1] )
img_tracer[1];
else if ( images[2] )
img_tracer[2];
var arrow1 = document.getElementById('arr1');
if ( arrow1 ) {
if (img_tracer[0])
images[1];
else if (img_tracer[1])
images[2];
else if (img_tracer[2])
images[2];
}
}

<table align="center">
<tr><td width="100px;" id="arr1" name="arr1" background="imagesright.jpg"onclick="change()"></td><td>
<img src="images1.jpg" alt="Technology" id="tech" name="tech" align="middle" /></td>
<td width="100px;" id="arr2" name="arr2" background="imagesleft.jpg" style="background-repeat: no-repeat" onclick="change()">
</td></tr>
</table>
&#13;
如果你帮助我,我会很感激。
答案 0 :(得分:0)
我认为这就是您正在寻找的内容:http://jsfiddle.net/xms7v9vv/
<强> HTML:强>
<table align="center">
<tr><td width="100px;" id="arr1" name="arr1" background="imagesright.jpg"onclick="change(this)"></td><td>
<img src="images1.jpg" alt="Technology" id="tech" name="tech" align="middle" /></td>
<td width="100px;" id="arr2" name="arr2" background="imagesleft.jpg" style="background-repeat: no-repeat" onclick="change(this)">
</td></tr>
</table>
<强>使用Javascript:强>
var images = [];
images[0] = "images1.jpg";
images[1] = "images2.jpg";
images[2] = "images3.jpg";
var currentImage = 0;
var change = function(td){
if(td.getAttribute("name") == "arr1"){
// Go left
--currentImage;
if(currentImage == -1)
currentImage = 2;
}else{
// Go right
++currentImage;
if(currentImage == 3){
currentImage = 0;
}
}
document.getElementById('tech').src = images[currentImage];
};
答案 1 :(得分:0)
这应该足够有效。您应该只有一个包含所有图像的数组,只需更新当前索引。
var currentId = 0;
function setImage(id, src) {
document.getElementById(id).src = src;
}
var images = [
"http://placehold.it/200x160/ff0000/00ffff.png&text=1",
"http://placehold.it/200x160/00ff00/ff00ff.png&text=2",
"http://placehold.it/200x160/0000ff/ffff00.png&text=3"
];
window.change = function(direction) {
currentId += direction;
if (currentId > images.length - 1) {
currentId = 0;
} else if (currentId < 0) {
currentId = images.length-1;
}
setImage('tech', images[currentId]);
}
.nav {
border: thin solid #000;
text-align: center;
font-size: 64px;
font-weight: bold;
}
<table align="center">
<tr>
<td class="nav" width="100px;" id="arr1" name="arr1" onclick="change(-1)"><</td>
<td align="center">
<img src="http://placehold.it/200x160/ff0000/00ffff.png&text=1" alt="Technology" id="tech" name="tech" />
</td>
<td class="nav" width="100px;" id="arr2" name="arr2" onclick="change(1)">></td>
</tr>
</table>