Sunday, 7 September 2014

Auto Pic Change Gallery After 3 Seconds

<script>
img=0;
function abc()
{
if(img==1)
{
document.getElementById("change").src= "images/3.jpg";
}
if(img==2)
{
document.getElementById("change").src= "images/2.jpg";
}
if(img==3)
{
document.getElementById("change").src= "images/4.jpg";
}
if(img==3)
{
img=0;
}
img++;
setTimeout("abc()",2000);
}

</script>
<body onLoad="abc()">

<center><img src="images/1.jpg" id="change" width="500" height="400" border="10">
</center>

No comments:

Post a Comment