Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Created March 8, 2013 17:03
Show Gist options
  • Save fdaciuk/5118001 to your computer and use it in GitHub Desktop.
Save fdaciuk/5118001 to your computer and use it in GitHub Desktop.
Brincando com Konami Code.
var $konami = $('#konami'),
$all = $('#all'),
$msg = $('#msg'),
keyCode,
konami_code = [38, 38, 40, 40, 37, 39, 37, 39, 66, 65],
konami_code_count = konami_code.length - 1,
cont = 0;
$(document).on('keydown', function(e) {
keyCode = e.keyCode || e.which;
if( keyCode === konami_code[cont] ) {
if( cont === konami_code_count ) {
$msg.html('AEEEEE');
$('body').css('background', 'red');
} else {
cont++;
$msg.html('certo');
}
} else {
cont = 0;
$msg.html('errado');
}
$konami.html(keyCode);
$all.append( ' ' + keyCode );
});
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8" />
<title>Konami Code em JS</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
</head>
<body>
<p>Se você acertar o Konami code, o bg do documento vai ficar vermelho.</p>
<div id="konami"></div>
<div id="all"></div>
<div id="msg"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment