-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tweaks to build process, added ctrl/cmd rather than ctrl in one case,…
… minor version patch increase
- Loading branch information
1 parent
e868725
commit 35253a2
Showing
7 changed files
with
44 additions
and
7 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
$(function () { | ||
|
||
"use strict"; | ||
|
||
var bd = $("body"); | ||
|
||
$(document).on("konami", function () { | ||
|
||
bd.css({ | ||
"transition": "-webkit-transform 3s ease-in-out", | ||
"-webkit-transform": "rotate(720deg)", | ||
"overflow": "hidden" | ||
}); | ||
|
||
setTimeout(function () { | ||
|
||
bd.css({ | ||
"transition": "none", | ||
"-webkit-transform": "rotate(0deg)", | ||
"overflow": "visible" | ||
}); | ||
|
||
}, 3000); | ||
|
||
}); | ||
|
||
}); |
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
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