Skip to content

Instantly share code, notes, and snippets.

@chapel
Created September 11, 2011 04:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chapel/1209167 to your computer and use it in GitHub Desktop.
Save chapel/1209167 to your computer and use it in GitHub Desktop.
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!-- Consider adding a manifest.appcache: h5bp.com/d/Offline -->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<!-- Use the .htaccess and remove these lines to avoid edge case issues.
More info: h5bp.com/b/378 -->
<!--<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">-->
<title>easteregg.in - where you go to get your website's easter eggs!</title>
<meta name="description" content="Where you go to get your website's easter eggs! Choose your trigger, choose your outcome, then copy/paste the generated script to your site.">
<meta name="author" content="http://github.com/niftylettuce/">
<!-- Mobile viewport optimized: j.mp/bplateviewport -->
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Favicon by http://www.iconfinder.com/icondetails/66964/128/_icon -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/jquery.fancybox-1.3.4.css">
<!-- More ideas for your <head> here: h5bp.com/d/head-Tips -->
<!-- All JavaScript at the bottom, except this Modernizr build incl. Respond.js
Respond is a polyfill for min/max-width media queries. Modernizr enables HTML5 elements & feature detects;
for optimal performance, create your own custom Modernizr build: www.modernizr.com/download/ -->
<script src="js/libs/modernizr-2.0.6.min.js"></script>
</head>
<body>
<div id="container">
<header>
<h1 class="ir">easteregg.in - where you go to get your website's easter eggs!</h1>
</header>
<div>
boaiwjefoiajwefoijaweofijaweofijaweofijaewoifjaweiofj
</div>
</div> <!--! end of #container -->
<!-- JavaScript at the bottom for fast page loading -->
<!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.6.2.min.js"><\/script>')</script>
<script src="js/libs/jquery.fancybox-1.3.4.pack.js"></script>
<!-- http://easteregg.in - where you go to get your website's easter eggs! -->
<script type="text/javascript">
var konamiKeys = [], konamiCombo = "38,38,40,40,37,39,37,39,66,65";
var konamiRun = function() {
$(document).keydown(function(e) {
konamiKeys.push(e.keyCode);
if(konamiKeys.toString().indexOf(konamiCombo) >= 0) {
$.getScript("http://easteregg/js/invert-colors.js", function(data, status) {
var finishHim = function () {
console.log("Invert him!");
$("body").invert();
}
finishHim();
konamiKeys = [];
});
}
}
});
}
konamiRun();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment