如何为多个元素制作倒计时时钟?

问题描述 投票:0回答:1

下面是我的PHP代码,它连接到我的数据库并收集信息并将其作为html表回显。但唯一的问题是所有倒计时时钟倒数到一个日期。请帮助我,以便每个时钟倒计时到个人毕业日期。

<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "graduation";

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
} 

$sql = "SELECT id, name, date, status FROM student";
$result = $conn->query($sql);

if ($result->num_rows > 0) {
echo "<table><tr><th>ID</th><th>Name</th><th>Date of Graduation</th><th>Count-Down-Clock</th></tr>";
// output data of each row
while($row = $result->fetch_assoc()) {
    echo "<tr><td>".$row["id"]."</td><td>".$row["name"]."</td><td>".$row["date"]."</td><th><p class='demo'></p></th></tr>";
}
echo "</table>";
} else {
echo "0 results";
}
$conn->close();
?>

下面是我的javascript代码

into a count down clock.
<script>



// Set the date we're counting down to
var countDownDate = new Date("Sep 5, 2018 15:37:25").getTime();

// Update the count down every 1 second
var x = setInterval(function() {

// Get todays date and time
var now = new Date().getTime();

// Find the dif between now an the count down date
var dif = countDownDate - now;

// Time calculations for days, hours, minutes and seconds
 var d = Math.floor(dif / (1000 * 60 * 60 * 24));
 var h = Math.floor((dif % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
 var m = Math.floor((dif % (1000 * 60 * 60)) / (1000 * 60));
 var s = Math.floor((dif % (1000 * 60)) / 1000);

 var formatted = d + "d " + h + "h " + m + "m " + s + "s ";
// Output the result in an element with id="demo"
    [...document.querySelectorAll(".demo")].forEach(el => el.innerHTML = dif < 0 ? "Expired" : formatted);




    // If the count down is over, write some text 
    if (dif < 0) {
    clearInterval(x);

    }
}, 1000);
</script>
javascript php html
1个回答
1
投票

问题:

  • var countDownDate = new Date("Sep 5, 2018 15:37:25").getTime();是硬编码的
  • 所有.demo元素都使用相同的HTML结果文本

解:

在代码中你有<td>".$row["date"]."</td>代替:

<td>
    <div data-date='". $row["date"] ."'></div>
</td>

JS应该读取forEach元素[data-date]它自己的data-date值并将其用作倒计时开始;而不是目前硬编码的new Date("Sep 5, 2018 15:37:25").getTime();

这是修改后的JS的一个例子:

function countDown(el) { // Create a function that recieves the element as argument

  var countDownDate = new Date(el.dataset.date).getTime();

  var x = setInterval(function() {

    var now = new Date().getTime();
    var dif = countDownDate - now;
    var d = Math.floor(dif / (1000 * 60 * 60 * 24));
    var h = Math.floor((dif % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
    var m = Math.floor((dif % (1000 * 60 * 60)) / (1000 * 60));
    var s = Math.floor((dif % (1000 * 60)) / 1000);

    var formatted = d + "d " + h + "h " + m + "m " + s + "s ";
    // Output the result in the argument element
    el.innerHTML = dif < 0 ? "Expired" : formatted;

    // If the count down is over, stop Intervals
    if (dif < 0) {
      clearInterval(x);
    }
  }, 1000);

}

// Init countDown!
[...document.querySelectorAll("[data-date]")].forEach(el => countDown(el));
<table>
  <tr>
    <td>
      John
    </td>
    <td>
      <div data-date='Oct 20, 2018 12:00:00'></div>
    </td>
  </tr>
  <tr>
    <td>
      Peter
    </td>
    <td>
      <div data-date='Sep 5, 2018 15:37:25'></div>
    </td>
  </tr>
</table>
© www.soinside.com 2019 - 2024. All rights reserved.