该页面在加载时自动调用函数moveit()。 moveit()上下移动图像(一行)。我希望这种情况持续发生;但是,我不知道如何使我的功能重新启动。当前,每次行到达页面底部时,我都会重新加载页面。不过,这需要花费很多时间,因此我想重新启动该功能。谢谢!

<html manifest="manifest.appcache">

<body onload="moveit(8)">

<img style="margin: 0 auto;" src="http://media.tumblr.com/593368ddaf4ad655258a076f959856fa/tumblr_inline_mgmuspje6G1re2ao1.bmp"></img>
<style type="text/css">

                .moveimage { position:absolute; right:0; bottom:0; z-index:2 }

}

</style>

<script language="JavaScript">

function moveit(spot)
{

if (document.getElementById("image1"))
  {
   var picture=document.getElementById("image1").style;
      if (spot<328)
      {
        picture.bottom= spot;
        spot+=3.7;
        setTimeout('moveit('+spot+')',15);
       }
      if (spot>328)
      {
                picture.top= spot;
        spot+=1.25;
                setTimeout('moveit('+spot+')',10);
      }
      if (spot>650)
      {
                window.location.reload();
      }
   }

}

</body>

</script>


</html>

最佳答案

换线

window.location.reload();




picture.bottom = 0; // reset
picture.top = ""; // reset

moveit(); // and start over again

09-11 17:40