This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/assets/javascripts/app.js

36 lines
886 B
JavaScript

$(function(){
hljs.initHighlightingOnLoad();
$('.flash').click(function(){
$('.flash').animate({
opacity: 0
}, 'fast', function(){
$(this).animate({
height: 0
}, 'slow', function(){
$(this).hide();
})
});
});
setTimeout(function(){
$('.flash').animate({
opacity: 0
}, 3000, function(){
$(this).animate({
height: 0
}, 'slow', function(){
$(this).hide();
})
});
}, 4000);
var pressed = new Array(10);
var keys = [38,38,40,40,37,39,37,39,66,65];
$(document).keydown(function(e) {
pressed.push(e.keyCode);
pressed.shift();
if ( pressed.toString() == keys.toString() ) {
$('html').css('overflow-x', 'hidden');
$('body').css('animation', '1s alternate-reverse infinite wiggle');
$('img').css('transform', 'rotate(180deg)');
}
});
});