konami-code-js
Version:
Fire a JavaScript Event when you enter the « Up Up Bottom Bottom Left Right Left Right B A » Konami Code Sequence.
20 lines • 488 B
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<title>With Callback</title>
</head>
<body>
<h1>With Callback</h1>
<p>For succeed this test, push « Up Up Down Down Left Right Left Right B A » and see the « Done » alert message.</p>
<script src="../src/konami-code.js"></script>
<script>
/* global KonamiCode */
var callback = function () {
alert("Done");
};
callback.debug = true;
new KonamiCode(callback);
</script>
</body>
</html>