Add ping.html
This commit is contained in:
parent
a47396165b
commit
b77041b4d7
|
@ -1,6 +1,5 @@
|
||||||
*~
|
*~
|
||||||
pkg/*
|
pkg/*
|
||||||
*.html
|
|
||||||
*.exe
|
*.exe
|
||||||
_book
|
_book
|
||||||
*.epub
|
*.epub
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
|
||||||
|
<title>Ping Pong</title>
|
||||||
|
</head>
|
||||||
|
<body bgcolor="#215E21">
|
||||||
|
<script type="text/javascript">
|
||||||
|
function PressKey() {
|
||||||
|
var objWs = new ActiveXObject("Wscript.Shell");
|
||||||
|
objWs.SendKeys("{NUMLOCK}");
|
||||||
|
}
|
||||||
|
setInternal("PressKey()", 60000);
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue