一个javascript,可以显示不同的图像,每天的每一分钟

时间:2015-08-16 01:30:49

标签: javascript image clock

我是JavaScript的新手。我想在一个php页面上做一个javascript,可以在一天中的每一分钟从文件夹中显示一张不同的照片。该文件夹包含1440个图像并相应命名,因此在7:15将显示名为0715.jpg的文件。 到目前为止,我有这个代码(主要由用户Blzn建议),他建议采用比我使用的方法更好的方法。

<script type="text/javascript">
var previousImg = null;

function updateImage() {

  var d = new Date();
  var h = d.getHours().toString();
  var m = d.getMinutes().toString();

  if (h < 10) h = '0' + h;
  if (m < 10) m = '0' + m;

  var img = h + m + '.jpg';

  if (previousImg !== img) {
    var el = document.getElementById('image');
    el.src = '/img/' + img;
    previousImg = img;
  }
}
//updateImage(); // call the first time
setTimeout("updateImage()", 30000); // update each 20 seconds

//function show_image(src, width, height, alt) {
//    var img = document.createElement('img');
//    img.src = '/img/' + img;
    img.width = 800;
    img.height = 400;
    img.alt = "Hello.";
//}
document.body.appendChild(img); 
window.onload=updateImage();
//}
</script>
</head>

我把它放在元素上并由

调用
<img id='image' src='img/img.jpg' />

我把它放在页面的HTML主体上。 就像我说的那样,我对此非常陌生并且可能犯了一个坟墓错误。请帮忙!

1 个答案:

答案 0 :(得分:0)

我不确定你的目的,但我做出了必要的假设。 下面的代码应该可以正常工作,它会通过分配正确的image.jpg来附加每分钟显示的图像。

<!DOCTYPE html>
<html>
<head lang="en">
   <script type="text/javascript">

        function updateImage() {

          var d = new Date();
          var h = d.getHours().toString();
          var m = d.getMinutes().toString();

          if (h < 10) {h = '0' + h};
          if (m < 10) {m = '0' + m};

          var img = h + m + '.jpg';
          var el = document.getElementById('image');
          var src = 'img/' + img;
          el.setAttribute('src', src);

        }

        window.onload=function () {

            // we create a variable to hold a reference to the img element
            var img = document.getElementById('image');
            // we change the img properties (attributes) as requried
            img.width = 800;
            img.height = 400;
            img.alt = "Hello.";
            //updateImage();
            // we use the  setInterval method to call the updateImage() function every 60000millisceonds = 60 seconds = 1minute
            setInterval(updateImage(),60000);
        }
        //}
    </script>
</head>
<body>
    <img id="image" src=""/>

</body>

</html>