Team:Osaka

From 2013.igem.org

(Difference between revisions)
Line 2: Line 2:
<html>
<html>
-
 
+
<script>
-
<img src="http://tatsuya.seikacc.com/wp-content/uploads/2013/09/home-01.jpg" style="width:1524px; position:absolute; top:0px; left:50%; margin-left:-762px; z-index:-1; "/>
+
<!--
-
 
+
function func() {
 +
dd = new Date();
 +
year = dd.getYear(); if (year < 2000) year += 1900;
 +
mon = dd.getMonth() + 1; if (mon < 10) mon = "0" + mon;
 +
date = dd.getDate(); if (date < 10) date = "0" + date;
 +
hour = dd.getHours(); if (hour < 10) hour = "0" + hour;
 +
min = dd.getMinutes(); if (min < 10) min = "0" + min;
 +
sec = dd.getSeconds(); if (sec < 10) sec = "0" + sec;
 +
document.form1.text1.value =
 +
year + "/" + mon + "/" + date + " " +
 +
hour + ":" + min + ":" + sec;
 +
setTimeout("func()", 1000);
 +
}
 +
// -->
 +
</script>
 +
<body onload="func()">
 +
<div id="time" style="position:absolute; top:500px; width:150px; left:50%; margin-left:-75px; z-index:500;">
 +
<input type="text" size="25" name="text1">
 +
</div>
</body>
</body>
</html>
</html>

Revision as of 10:27, 23 September 2013

team team team team team team team team