Diaporama
/Html JavaSript/Image/Diaporama.html
<script type="text/javascript">
var imageArray = new Array("img1.jpg","img2.jpg","img3.jpg");
var indexPhoto = 0;
function swapImg(variation){
indexPhoto = indexPhoto + variation;
if(indexPhoto==-1)indexPhoto=imageArray.length-1;
if(indexPhoto==imageArray.length)indexPhoto=0;
document.getElementById("imageTour").src=imageArray[indexPhoto];
}
</script>
<table border>
<tr>
<td><a href="javascript:swapImg(-1)">---</a></td>
<td><img id="imageTour" src="img1.jpg"></td>
<td><a href="javascript:swapImg(1)">+++</a></td>
</tr>
</table>