Files
nuitdelinfo/front/src/konami.js
T
JusDeChâtaigne 0af9f28549 konami code + DDR
2023-12-08 07:15:12 +01:00

42 lines
686 B
JavaScript

const allowedKeys = {
37: 'left',
38: 'up',
39: 'right',
40: 'down',
65: 'a',
66: 'b',
};
const konamiCode = [
'up',
'up',
'down',
'down',
'left',
'right',
'left',
'right',
'b',
'a',
];
let konamiCodePosition = 0;
document.addEventListener('keydown', function(e) {
let key = allowedKeys[e.keyCode];
let requiredKey = konamiCode[konamiCodePosition];
if (key === requiredKey) {
konamiCodePosition++;
if (konamiCodePosition === konamiCode.length) {
activateCheats();
konamiCodePosition = 0;
}
} else konamiCodePosition = 0;
});
const activateCheats = () => {
console.log("XD");
window.location.href = 'ggr.html';
};