-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathindex.html
42 lines (36 loc) · 1.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Key Detection</title>
<script type="text/javascript" src="http://www.cornify.com/js/cornify.js"></script>
</head>
<body>
<script>
(() => {
// Declare constants for secret code & array to hold keys pressed
let pressedKeys = []
const secretCode = 'helloworld'
// Attach event listener to window object
window.addEventListener('keyup', (e) => {
/* If value of secret code at index matching array's length
is equivalent to the key property of the event, push the
value into the array. Otherwise, reset the array.
*/
secretCode[pressedKeys.length] === e.key ?
pressedKeys.push(e.key) : pressedKeys.length = 0
/* If array of pressed keys matches secret code
when joined together, log out a message,
call the 'cornify_add()' function,
& reset the array.
*/
pressedKeys.join('') === secretCode && (()=>{
console.info('Hello you handsome devil!')
cornify_add()
pressedKeys = []
})()
})
})(); // Wrap code in IIFE to avoid polluting the global namespace
</script>
</body>
</html>