I have a HTML/Java clock program which used images and is currently in 24-Hour format, what I'm hoping to get done is to have it in a 12-Hour format and also display AM/PM with the Day and Date. Is that something possible? I'm trying to create a indic clock with different scripts here.
Here's the current code.
<meta charset="utf-8">
<title>Indic Clock</title>
<script type ="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
</head>
<body style="background-color: #FAF7EC">
<center> Devanagiri </center>
<div id="Clock">
<img id="hour1" src="0.png" width="150" height="275" />
<img id="hour2" src="0.png" width="150" height="275" />
<img src="dots.png" width="150" height="275" />
<img id="minute1" src="0.png" width="150" height="275" />
<img id="minute2" src="0.png" width="150" height="275" />
<img src="dots.png" width="150" height="275" />
<img id="second1" src="0.png" width="150" height="275" />
<img id="second2" src="0.png" width="150" height="275" />
</div>
<script type="text/javascript">
var images = new Array('0.png', '1.png', '2.png', '3.png', '4.png', '5.png', '6.png', '7.png', '8.png', '9.png',);
var interval = setInterval(function()
{
var date = new Date();
var hour = String(date.getHours());
var minutes = String(date.getMinutes());
var seconds = String(date.getSeconds());
if(hour < 10)
{
$('#hour1').attr('src', images[0]);
$('#hour2').attr('src', images[hour.charAt(0)]);
}
else
{
$('#hour1').attr('src', images[hour.charAt(0)]);
$('#hour2').attr('src', images[hour.charAt(1)]);
}
if(minutes < 10)
{
$('#minute1').attr('src', images[0]);
$('#minute2').attr('src', images[minutes.charAt(0)]);
}
else
{
$('#minute1').attr('src', images[minutes.charAt(0)]);
$('#minute2').attr('src', images[minutes.charAt(1)]);
}
if(seconds < 10)
{
$('#second1').attr('src', images[0]);
$('#second2').attr('src', images[seconds.charAt(0)]);
}
else
{
$('#second1').attr('src', images[seconds.charAt(0)]);
$('#second2').attr('src', images[seconds.charAt(1)]);
}
}, 1000)
</script>
</body>
I have tried to bring in Date and was able to get it to work, but I'm still confused with 12-Hour format with AM/PM and bring in the Day (for ex. MON for Monday, TUE for Tuesday and so on)
You can convert the date to 12-hour format like below
do it like below:
Working snippet: