mirror of
https://github.com/Febbweiss/febbweiss.github.io.git
synced 2026-03-04 14:15:46 +00:00
12 lines
277 B
JavaScript
12 lines
277 B
JavaScript
$(document).ready(function() {
|
|
$('#startBtn').on('click', function(event) {
|
|
for( var i = 1; i < 4; i++) {
|
|
$("#life" + i).css('opacity', '100');
|
|
$("#life" + i).show();
|
|
}
|
|
SCOREBOARD.score = Game.score = 0;
|
|
Game.level = -1;
|
|
Game.lives = 3;
|
|
Game.init();
|
|
});
|
|
}); |