Created
September 29, 2012 20:24
-
-
Save kennydude/3805098 to your computer and use it in GitHub Desktop.
tumblr-unac.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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