Added two soundtracks, fixed the paddle collision field, working on the tinyscreen css
This commit is contained in:
parent
3dbf266154
commit
5b366995d1
6 changed files with 35 additions and 9 deletions
|
@ -7,7 +7,7 @@
|
|||
<link rel="shortcut icon" href="media/favicon.ico" type="image/x-icon" >
|
||||
|
||||
<style type="text/css">
|
||||
html {
|
||||
body {
|
||||
background: #070707 url(media/layout-background.jpg) no-repeat;
|
||||
font-family: Arial;
|
||||
font-size: 13px;
|
||||
|
@ -58,13 +58,38 @@
|
|||
text-decoration: none;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
body.tinyscreen {
|
||||
background-position: 0 -275px;
|
||||
}
|
||||
|
||||
body.tinyscreen #header {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
body.tinyscreen #header img {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
body.tinyscreen #canvas {
|
||||
margin: 0;
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
left: 50%;
|
||||
margin-left: -312px;
|
||||
}
|
||||
|
||||
body.tinyscreen #footer {
|
||||
padding-top: 425px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script type="text/javascript" src="lib/vendors/jquery-1.9.1.js"></script>
|
||||
<script type="text/javascript" src="lib/impact/impact.js"></script>
|
||||
<script type="text/javascript" src="lib/game/main.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<body class="tinyscreen">
|
||||
<div id="header">
|
||||
<img src="media/layout-gamelogo.png">
|
||||
</div>
|
||||
|
@ -79,7 +104,7 @@
|
|||
for this awesome game.
|
||||
</div>
|
||||
|
||||
<a class="website" href="http://teamarg.com"><strong>teamarg</strong>.com</a>
|
||||
<a class="website" href="http://team-arg.aaron-mueller.de"><strong>team-arg</strong>.aaron-mueller.de</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -49,6 +49,13 @@ ig.module(
|
|||
// init graphics
|
||||
this.pauseDialogAnim = new ig.Animation( this.pauseDialog, 0, [0] )
|
||||
|
||||
// init music
|
||||
ig.music.add('sounds/DST-AngryRobotIII.mp3');
|
||||
ig.music.add('sounds/DST-2ndBallad.mp3');
|
||||
ig.music.loop = true;
|
||||
ig.music.volume = 0.3;
|
||||
ig.music.play();
|
||||
|
||||
// Load the level
|
||||
this.loadLevel(LevelLevel1);
|
||||
},
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 47 KiB |
BIN
dev/media/sounds/DST-2ndBallad.mp3
Normal file
BIN
dev/media/sounds/DST-2ndBallad.mp3
Normal file
Binary file not shown.
BIN
dev/media/sounds/DST-AngryRobotIII.mp3
Normal file
BIN
dev/media/sounds/DST-AngryRobotIII.mp3
Normal file
Binary file not shown.
6
doc/TODO
6
doc/TODO
|
@ -3,10 +3,6 @@ Initial release
|
|||
## GFX
|
||||
* Highscore-Screen
|
||||
|
||||
## Sound
|
||||
* Background-tune! (http://www.nosoapradio.us/)
|
||||
* Soundeffects more sutle
|
||||
|
||||
## Code
|
||||
* Display the Highscore in the game
|
||||
* Highscore-Script (http://www.holoville.com/blog/?p=948, http://www.scoreoid.net/)
|
||||
|
@ -17,10 +13,8 @@ Initial release
|
|||
* Only one number for the score
|
||||
|
||||
## Polish
|
||||
* Hitbox for paddles is wrong
|
||||
* Increase points with game length
|
||||
* Randomness for Y position if ball goes straight for too long
|
||||
* Change domain in Footer
|
||||
* Change layout on smaller screen sizes
|
||||
|
||||
## Nice to have
|
||||
|
|
Loading…
Reference in a new issue