"Clock"
Bootstrap 4.1.1 Snippet by Milind_Kamthe

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row" style="text-align:center;color:#fff">
<h2 style="text-align:center;color:#fff;width:100%">Minutes Remaining</h2>
</div>
</div>
<!DOCTYPE html>
<html>
<head>
<title>clock</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Monoton&display=swap" rel="stylesheet">
<style>
</style>
</head>
<body>
<div id="MyClockDisplay" class="clock" onload="showTime()"></div>
<div id="clock">
<span id="seconds">180 Min.</span>
</div>
<script>
function showTime(){
var date = new Date();
var h = date.getHours(); // 0 - 23
var m = date.getMinutes(); // 0 - 59
var s = date.getSeconds(); // 0 - 59
var session = "AM";
if(h == 0){
h = 12;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
body {
background-image: radial-gradient( circle 610px at 5.2% 51.6%, rgba(5,8,114,1) 0%, rgba(7,3,53,1) 97.5% );
}
.clock {
position: absolute;
top: 60%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
color: #fff;
font-size: 25px;
letter-spacing:0px;box-shadow:0 0 5px #000,inset 0 0 5px #000;padding:10px;border: 2px solid #fff;border-radius:7px;background:green;text-shadow: 2px 2px 2px #000;}
#clock {
width: auto;
height: 70px;
border-radius: 0;
background-color: lightgrey;
margin: auto;
}
span {
display: block;
width: 100%;
margin: auto;
padding-top: 0;
text-align: center;
font-size: 60px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
timeLeft = 228;
function countdown() {
timeLeft--;
document.getElementById("seconds").innerHTML = String( timeLeft );
if (timeLeft > 0) {
setTimeout(countdown,60000);
}
};
setTimeout(countdown, 0);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: