Files
konami.js/example.html
T
2015-04-10 19:40:17 +02:00

20 lines
322 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Konami code example</title>
<script src="konami.js"></script>
<script>
konami(function () {
var html = document.getElementsByTagName('html')[0];
html.style.backgroundColor = 'black';
html.style.color = 'white';
});
</script>
</head>
<body>
blah blah
</body>
</html>