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 641 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Change Callback</title> </head> <body> <h1>Change Callback</h1> <p>For succeed this test, push « Up Up Down Down Left Right Left Right B A » from input A and « Done First » alert message appear. <br> After, redo that and see the « Done Second » Alert.</p> <script src="../src/konami-code.js"></script> <script> /* global KonamiCode */ var kc = new KonamiCode({ debug: true, callback: function () { kc.setCallback(function () { alert("Done Second"); }); alert("Done First"); } }); </script> </body> </html>