]> jspc29.x-matter.uni-frankfurt.de Git - labtools.git/commitdiff
first version of timer
authorJan Michel <j.michel@gsi.de>
Wed, 19 Oct 2016 13:15:26 +0000 (15:15 +0200)
committerJan Michel <j.michel@gsi.de>
Wed, 19 Oct 2016 13:15:26 +0000 (15:15 +0200)
timer/index.htm [new file with mode: 0644]
timer/style.css [new file with mode: 0644]

diff --git a/timer/index.htm b/timer/index.htm
new file mode 100644 (file)
index 0000000..29cdf3b
--- /dev/null
@@ -0,0 +1,53 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <title>Talk Timer</title>
+ <link rel="stylesheet" type="text/css" href="style.css">
+ <meta  charset="UTF-8"/>
+ <script type="text/javascript">
+ function isInt(value) {
+  return !isNaN(value) && (function(x) { return (x | 0) === x; })(parseFloat(value))
+}
+  var TO;
+  var starttime = 100;
+ function start() {
+   starttime = document.getElementById('set').value;
+   if(!isInt(starttime)) {
+     document.getElementById('tim').innerHTML = 'X';
+     return;
+     }
+   document.getElementById('tim').innerHTML = starttime;
+   clearInterval(TO);
+   TO = setInterval('update()',60000);
+   }
+ function update() {
+   x = document.getElementById('tim').innerHTML;
+   x = x-1;
+   document.getElementById('tim').innerHTML = x;
+   
+   
+   if(x<= 0) document.getElementById('tim').className='shutup';
+   else if(x <= starttime/10) document.getElementById('tim').className='hurry';
+   else if(x<=starttime/3) document.getElementById('tim').className='warn';
+   else document.getElementById('tim').className='';
+   //if (x==0) {clearInterval(TO);}
+   }
+
+ </script>
+  
+</head>
+<body>
+<div id="tim">
+00</div>
+<div id="setting">
+<input type="text" id="set" onChange="start()" value="10"/>
+<input type="button" value="start" onClick="start()"/>
+</div>
+
+</body></html>
diff --git a/timer/style.css b/timer/style.css
new file mode 100644 (file)
index 0000000..702632b
--- /dev/null
@@ -0,0 +1,44 @@
+body {
+  font-family:"Trebuchet MS";
+  margin:0;
+  height:100%;
+  width:100%;
+}
+
+
+#set {
+position:absolute;
+left:5px;
+top:5px;
+}
+
+
+#tim {
+
+font-family:monospace;
+font-size:70vw;
+width:100%;
+height:95%;
+text-align:center;
+margin:auto;
+}
+
+.warn{
+  background:yellow;
+  color:black;
+}
+
+.hurry{
+  background:orange;
+  color:black;
+  }
+  
+.shutup{
+  background:red;
+  color:white;
+  animation: blinker 1s linear infinite;
+}
+
+@keyframes blinker {  
+  50% { opacity: 0; }
+}