-
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.
- Loading branch information
1 parent
964d83a
commit 735d271
Showing
1,153 changed files
with
75,982 additions
and
125,833 deletions.
There are no files selected for viewing
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,103 @@ | ||
<!DOCTYPE html> | ||
<html lang="ja"> | ||
<head prefix="og: http://ogp.me/ns#"> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" /> | ||
<meta property="og:title" content=" 404 Page not found · Compumetrika" /> | ||
<meta property="og:site_name" content="Compumetrika" /> | ||
<meta property="og:url" content="http://localhost:1313/404/" /> | ||
|
||
|
||
<meta property="og:type" content="website" /> | ||
|
||
|
||
<title> | ||
404 Page not found · Compumetrika | ||
</title> | ||
|
||
<link rel="stylesheet" href="http://localhost:1313css/bootstrap.min.css" /> | ||
<link rel="stylesheet" href="http://localhost:1313css/main.css" /> | ||
<link rel="stylesheet" href="http://localhost:1313css/font-awesome.min.css" /> | ||
<link rel="stylesheet" href="http://localhost:1313css/github.css" /> | ||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400" type="text/css"> | ||
<link rel="shortcut icon" href="http://localhost:1313images/favicon.ico" /> | ||
<link rel="apple-touch-icon" href="http://localhost:1313images/apple-touch-icon.png" /> | ||
|
||
</head> | ||
<body> | ||
<header class="global-header"> | ||
<section class="header-text"> | ||
<h1><a href="http://localhost:1313">Compumetrika</a></h1> | ||
|
||
<div class="sns-links hidden-print"> | ||
|
||
<a href="https://twitter.com/StochasticNate" target="_blank"> | ||
<i class="fa fa-twitter"></i> | ||
</a> | ||
|
||
|
||
|
||
<a href="https://github.com/npalmer" target="_blank"> | ||
<i class="fa fa-github"></i> | ||
</a> | ||
|
||
|
||
|
||
</div> | ||
|
||
|
||
<a href="http://localhost:1313" class="btn-header btn-back hidden-xs"> | ||
<i class="fa fa-angle-left"></i> | ||
Home | ||
</a> | ||
|
||
|
||
<a href="http://localhost:1313/index.xml/" class="btn-header btn-subscribe hidden-xs"> | ||
<i class="fa fa-rss"></i> | ||
Subscribe | ||
</a> | ||
|
||
</section> | ||
</header> | ||
<main class="container"> | ||
|
||
<section class="row not-found"> | ||
<h1 class="col-md-4 col-md-offset-4">404</h1> | ||
<div class="col-md-4 col-md-offset-4">That page doesn't exist!</div> | ||
</section> | ||
</main> | ||
<footer class="container global-footer"> | ||
<div class="copyright-note pull-left"> | ||
|
||
</div> | ||
<div class="sns-links hidden-print"> | ||
|
||
<a href="https://twitter.com/StochasticNate" target="_blank"> | ||
<i class="fa fa-twitter"></i> | ||
</a> | ||
|
||
|
||
|
||
<a href="https://github.com/npalmer" target="_blank"> | ||
<i class="fa fa-github"></i> | ||
</a> | ||
|
||
|
||
|
||
</div> | ||
|
||
</footer> | ||
|
||
<script src="http://localhost:1313js/highlight.pack.js"></script> | ||
<script> | ||
hljs.initHighlightingOnLoad(); | ||
</script> | ||
|
||
|
||
<script>document.write('<script src="http://' | ||
+ (location.host || 'localhost').split(':')[0] | ||
+ ':1313/livereload.js?mindelay=10"></' | ||
+ 'script>')</script></body> | ||
</html> | ||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
var invaders, | ||
gamepad; | ||
|
||
window.addEventListener("MozGamepadConnected", function(e) { | ||
gamepad = new Input.Device(e.gamepad); | ||
}); | ||
|
||
window.addEventListener('load', function(){ | ||
initInvaders404(); | ||
}); | ||
|
||
function play (){ | ||
var splash = document.getElementById('splash'); | ||
splash.style.display = "none"; | ||
splash.style.opacity = 0; | ||
|
||
invaders.start(); | ||
} | ||
|
||
function showSplash(){ | ||
invaders.drawSplash(function (){ | ||
var splash = document.getElementById('splash'); | ||
splash.style.display = "block"; | ||
|
||
setInterval(function(){ | ||
var opa = parseFloat(splash.style.opacity) || 0; | ||
if (opa < 1){ | ||
splash.style.opacity = opa + 0.2; | ||
} | ||
}, 200); | ||
}); | ||
} | ||
|
||
function initInvaders404(){ | ||
invaders = new Invaders404({ | ||
canvasId: "game-canvas", | ||
onLoose: function(){ | ||
showSplash(); | ||
}, | ||
onWin: function(){ | ||
showSplash(); | ||
} | ||
}); | ||
|
||
invaders.start(); | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.