Created
March 7, 2017 06:51
-
-
Save orisano/ff4f7c2288f92bebab8b155c4e4fc1ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
</head> | |
<body> | |
<div id="timer-wrapper"> | |
<h1 id="timer" style="font-size: 74pt;">00:00</h1> | |
</div> | |
<div id="button-wrapper"> | |
<button id="start-button">Start</button> | |
<button id="stop-button">Stop</button> | |
<button id="reset-button">Reset</button> | |
</div> | |
<script> | |
(function(){ | |
"use strict"; | |
var $start_button = document.getElementById("start-button"); | |
var $stop_button = document.getElementById("stop-button"); | |
var $reset_button = document.getElementById("reset-button"); | |
var $timer = document.getElementById("timer"); | |
var second = 0; | |
function zf(x) { return (x > 9 ? "" : "0") + x; } | |
function updateSecond(x) { | |
second = x; | |
$timer.textContent = zf(second / 60 | 0) + ":" + zf(second % 60); | |
} | |
function nextSecond() { | |
updateSecond(second + 1); | |
} | |
var timer_handle = -1; | |
$start_button.addEventListener("click", function(ev) { | |
timer_handle = setInterval(nextSecond, 1000); | |
}, false); | |
$stop_button.addEventListener("click", function(ev) { | |
if (timer_handle != -1) { | |
clearInterval(timer_handle); | |
timer_handle = -1; | |
} | |
}, false); | |
$reset_button.addEventListener("click", function(ev) { | |
updateSecond(0); | |
}, false); | |
})(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment