404.php 401 Bytes
Newer Older
nextime's avatar
nextime committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<canvas id="canvas" width="600" height="400" style="background-color: #000">
            FernetJS Invaders 404 - Not Found
           </canvas>
<script src="/resources/invaders404/invaders404.min.js"></script>
<script>
var invaders = new Invaders404({
    onLoose: function(){
        alert('You Loose!');
    },
    onWin: function(){
        alert('You Win!');
    }
});
invaders.start();
</script>