Add files via upload
This commit is contained in:
parent
ff18db264e
commit
422969e6c9
44
index1.09.html
Normal file
44
index1.09.html
Normal file
|
@ -0,0 +1,44 @@
|
|||
<html>
|
||||
<!-- classes were from SparrOS Developer Team -->
|
||||
<title>DremJS</title>
|
||||
<head>
|
||||
<script src="jquery/jquery-3.3.1.min.js"></script>
|
||||
<script>
|
||||
function startTime() {
|
||||
var today = new Date();
|
||||
var h = today.getHours();
|
||||
var m = today.getMinutes();
|
||||
var s = today.getSeconds();
|
||||
m = checkTime(m);
|
||||
s = checkTime(s);
|
||||
document.getElementById('txt').innerHTML =
|
||||
h + ":" + m + ":" + s;
|
||||
var t = setTimeout(startTime, 500);
|
||||
}
|
||||
function checkTime(i) {
|
||||
if (i < 10) {i = "0" + i}; // add zero in front of numbers < 10
|
||||
return i;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<style>
|
||||
.start {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
bottom: 0px;
|
||||
}
|
||||
.astart {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
bottom: 50px;
|
||||
}
|
||||
.cwhite {
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
<body onload="startTime();">
|
||||
<div id="txt"></div>
|
||||
<iframe src="index-closed.html" style="height:580px;width:1200px"></iframe>
|
||||
<INPUT TYPE="button" onClick="history.go(0)" VALUE="Home">
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue