Skip to content

Instantly share code, notes, and snippets.

@kennydude
Created September 29, 2012 20:24
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 kennydude/3805098 to your computer and use it in GitHub Desktop.
Save kennydude/3805098 to your computer and use it in GitHub Desktop.
tumblr-unac.html
<div class="uac" style="background: #333; opacity: 0.9; position: absolute; top:0;left:0;bottom:0;right:0;display:none">
</div>
<div style="position: fixed; top: 50px; right: 0; left: 0; z-index: 999999999;display:none" class="uac">
<div style="background:#fff; margin: 0 auto; text-align: center; width:500px">
<h1>YOU ARE</h1>
<img src="http://25.media.tumblr.com/tumblr_mb4mphniug1qlqeu2o1_500.gif" />
</div></div>
<script type="text/javascript" src="http://code.jquery.com/jquery.js"></script>
<script type="text/javascript">
$(document).keydown(function(e){
if(e.keyCode == 85){
$(".uac").show();
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment