<ph>толк тайм ( 10–18:00 )</ph>
<style type="text/css">
/*задаём общие параметры для всей страницы*/
body {
text-align: left;
margin: 10;
font-family: Arial ;
font-size: 10px;
line-height: 1.775;
}
</style>
<div class="clock"></div>
.clock {
font-size: 10px;
font-family: Arial;
color: #0135F3;
}
function clock() {// We create a new Date object and assign it to a variable called "time".
var time = new Date(),
// Access the "getHours" method on the Date object with the dot accessor.
hours = time.getHours(),
// Access the "getMinutes" method with the dot accessor.
minutes = time.getMinutes(),
seconds = time.getSeconds();
document.querySelectorAll('.clock')[0].innerHTML = harold(hours) + ":" + harold(minutes) + ":" + harold(seconds);
function harold(standIn) {
if (standIn < 10) {
standIn = '0' + standIn
}
return standIn;
}
}
setInterval(clock, 1000);
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.