diedVIPs

html knowhow

Count-Up









Count-Up

So sieht´s aus

Bis zu meinem Geburtstag am 14.4.2022 sind es noch:

Quellcode
<html>
<head>

<style type="text/css">
p {text-align: center;font-size: 1.3em;margin-top: 0px;}
</style>
</head>

<body>
<center>
<p id="demo"> Bis zu meinem Geburtstag am 14.4.2022 sind es noch: </p>
<script>
var countDownDate = new Date("apr 14, 2022 01:01:01").getTime();
var x = setInterval(function() {
var now = new Date().getTime();
var distance = countDownDate - now;
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("demo").innerHTML = "Bis zu meinem Geburtstag am 14.4.2022 sind es noch: " +days + " Tage, " + hours + " Stunden und " + minutes + " Minuten ";
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
</script></center>
</body>

</html>








Kontakt    Datenschutz    Impressum