DIR : /home/kozerus/public_html/ko/timer7.htm
/home/kozerus/public_html/ko
<html>
<head>
<style id=style_timer7>
</style id=style_timer7_end>
<script id=script_timer7>
let timeoutID;
function setOutput(outputContent) {
document.querySelector('#output').textContent = outputContent;
}
function delayedMessage() {
setOutput('');
timeoutID = setTimeout(setOutput, 2*1000, 'That was really slow!');
}
function clearMessage() {
clearTimeout(timeoutID);
}
</script id=script_timer7>
</head>
<body bgcolor=linen>
<button onclick="delayedMessage();">Show a message after two seconds</button>
<button onclick="clearMessage();">Cancel message before it happens</button>
<div id="output"></div>
</body>
</html>
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer