UNPKG

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.

24 lines 533 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Chain</title> </head> <body> <h1>Chain</h1> <p>Just check the console to see all function used (disable, enable, setListener, setCallback).</p> <script src="../src/konami-code.js"></script> <script> /* global KonamiCode */ new KonamiCode({ debug: true }) .disable() .enable() .setListener(document.getElementsByTagName("body")[0]) .setCallback(function () { alert("Done"); }); </script> </body> </html>