自动更改为下一张图像

时间:2012-02-24 20:57:54

标签: javascript html css image

我有以下代码用于显示悬停时更改的多个图像,但我还想添加一个功能,如果我不手动操作,它会自动更改图像。         

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title><br />

</head>

<body>  
<p>
  <script type="text/javascript" language="javascript">
    function changeImage(img){
       document.getElementById('bigImage').src=img;

    }
  </script>

  <img src="../Pictures/lightcircle.png" alt="" width="284" height="156" id="bigImage"    
/>
<p>&nbsp; </p>
<div>
  <p>
  <img src="../Pictures/lightcircle2.png" height="79" width="78" 

onmouseover="changeImage('../Pictures/lightcircle2.png')"/>

 </p>
 <p><img src="../Pictures/lightcircle.png" alt="" width="120" height="100" 

onmouseover="changeImage('../Pictures/lightcircle.png')"/></p>

 <p><img src="../Pictures/lightcircle2.png" alt="" width="78" height="79"    

onmouseover="changeImage('../Pictures/lightcircle2.png')"/></p>

 <p>&nbsp;</p>


 </br>
</div>
</body>
</html>

我想要做的是自动更改使用javascript显示的图像。我怎么能这样做?

3 个答案:

答案 0 :(得分:1)

使用setInterval运行更改图像src的函数。

var x = 0;
var images = new Array("../Pictures/lightcircle2.png","../Pictures/lightcircle.png");
var i = setInterval(auto, 3000);

function auto()
  {
    x++;
    if (x == images.length)
       x=0;
    document.getElementById('bigImage').src=images[x];      
  }

答案 1 :(得分:1)

答案 2 :(得分:0)

听起来你想要一个旋转木马。如果是这样,试试这个。

将此添加到您的JavaScript

// The list of images you want to cycle through
var imageRotation = [
           '../Pictures/lightcircle.png',
           '../Pictures/lightcircle2.png'
];
// The current image being displayed
var currentImage = 0;
// A variable to hold the timer
var t; 

// Call this to automatically start rotation. Currently set for a 5 sec rotation
function startCarousel(){
    t=setInterval(changeCarousel,5000);
}

// Moves to the next picture
function changeCarousel(){
    // Change to the next image
    currentImage++;
    // If there isn't a next image, go back to the start
    if (currentImage == imageRotation.length) currentImage = 0;
    // Change the image
    document.getElementById('bigImage').src=imageRotation[currentImage];
}

然后将您的功能修改为

function changeImage(img){
   // Stops the rotation
   clearInterval(t);
   // Assigns currentImage to the image they selected
   currentImage = imageRotation.indexOf(img);
   // Swap the image
   document.getElementById('bigImage').src=imageRotation[currentImage];
   // Start the rotation again in 10 sec
   setTimeout(startCarousel, 10000); 
}