Javascript多个倒计时器

时间:2016-02-22 18:47:38

标签: javascript css timer countdown

我已经尝试了好几天才能完成这项工作。 所以我希望这个倒数计时器能够打印多个计时器,并且日期会出现在一个特定的txt文件中。

这是我的代码。

的index.php

    <html>
<head>
    <title> TimTo </title>
    <link rel="stylesheet" type="text/css" href="styles.css" />
    <script src="javas/countdown.js">
    </script>
</head>
<body>
<h1>Countdown Clock</h1>
<?php 
$myfile=file("kellonaika.txt",FILE_IGNORE_NEW_LINES) or die("Unable to locate the file!");

for ($i = 0; $i < count($myfile); $i++) {
    ?>
    <div class='clockdiv'>
        <div>
            <span class='days'></span>
                <div class='smalltext'>Days</div>
            </div>
            <div>
                <span class='hours'></span>
                <div class='smalltext'>Hours</div>
            </div>
            <div>
                <span class='minutes'></span>
                <div class='smalltext'>Minutes</div>
            </div>
            <div>
                <span class='seconds'></span>
                <div class='smalltext'>Seconds</div>
            </div>
        </div>
    <hr>
</body>
<?php echo"<script>initializeClock('clockdiv',". $myfile[$i] .");</script>"; } ?>
</html>

countdown.js

function getTimeRemaining(endtime) {
  var t = Date.parse(endtime) - Date.parse(new Date());
  var seconds = Math.floor((t / 1000) % 60);
  var minutes = Math.floor((t / 1000 / 60) % 60);
  var hours = Math.floor((t / (1000 * 60 * 60)) % 24);
  var days = Math.floor(t / (1000 * 60 * 60 * 24));
  return {
    'total': t,
    'days': days,
    'hours': hours,
    'minutes': minutes,
    'seconds': seconds
  };
}  
function initializeClock(id, endtime) {
  var clock = document.getElementsByClassName(id);
  clock.style.display = 'block';
  var daysSpan = clock.querySelector('.days');
  var hoursSpan = clock.querySelector('.hours');
  var minutesSpan = clock.querySelector('.minutes');
  var secondsSpan = clock.querySelector('.seconds');
  function updateClock() {
    var t = getTimeRemaining(endtime);
    daysSpan.innerHTML = t.days;
    hoursSpan.innerHTML = ('0' + t.hours).slice(-2);
    minutesSpan.innerHTML = ('0' + t.minutes).slice(-2);
    secondsSpan.innerHTML = ('0' + t.seconds).slice(-2);

    if (t.total <= 0) {
      clearInterval(timeinterval);
    }
  }

  updateClock();
  var timeinterval = setInterval(updateClock, 1000);
}

这是我的样式表 styles.css的

body{
    text-align: center;
    background: #00ECB9;
    font-family: sans-serif;
    font-weight: 50;
}
h1{
  color: #396;
  font-weight: 50;
  font-size: 40px;
  margin: 40px 0px 20px;
}
.clockdiv {
    font-family: sans-serif;
    color: #fff;
    display: block;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
}
.clockdiv > div{
    padding: 10px;
    border-radius: 3px;
    background: #00BF96;
    display: inline-block;
}
.clockdiv div > span{
    padding: 15px;
    border-radius: 3px;
    background: #00816A;
    display: inline-block;
}
.smalltext{
    padding-top: 5px;
    font-size: 16px;
}

我的kellonaika.txt就像这样 “2016年6月23日” “2016年12月31日” “2016年12月31日” “2016年12月31日” “2016年12月31日” “2016年12月31日

0 个答案:

没有答案