diff --git a/index.html b/index.html index 152b22e..6b5410b 100644 --- a/index.html +++ b/index.html @@ -22,9 +22,36 @@
play!
-
-
-
play!
+
diff --git a/scripts/main.js b/scripts/main.js index e18deda..17ccd6d 100644 --- a/scripts/main.js +++ b/scripts/main.js @@ -29,10 +29,11 @@ subscribe("START_GAME", function(){ $("#loading").style.display = "none"; Game.start(); - SceneSetup.act1(); + /*SceneSetup.act1(); music('battle', {volume:0.5}); hong({body:"phone1"}); - Game.goto("act1i"); - //Game.goto("intro"); + Game.goto("act1i");*/ + + Game.goto("intro"); }); \ No newline at end of file diff --git a/sprites/end_demo/patreon.png b/sprites/end_demo/patreon.png new file mode 100644 index 0000000..acaadc8 Binary files /dev/null and b/sprites/end_demo/patreon.png differ diff --git a/sprites/end_demo/replay.png b/sprites/end_demo/replay.png new file mode 100644 index 0000000..4e8fabc Binary files /dev/null and b/sprites/end_demo/replay.png differ diff --git a/sprites/end_demo/share.png b/sprites/end_demo/share.png new file mode 100644 index 0000000..f31173b Binary files /dev/null and b/sprites/end_demo/share.png differ diff --git a/sprites/end_demo/tbc.png b/sprites/end_demo/tbc.png new file mode 100644 index 0000000..1120b3c Binary files /dev/null and b/sprites/end_demo/tbc.png differ diff --git a/styles/game.css b/styles/game.css index ec2bab2..3600832 100644 --- a/styles/game.css +++ b/styles/game.css @@ -84,6 +84,41 @@ body{ font-size: 30px; } +#end_demo{ + position: absolute; + top:0; left:0; + background: #2E2E2E; + width: 100%; + height: 100%; + color:#fff; + text-align: center; +} +#end_demo_tbc{ + background: url(../sprites/end_demo/tbc.png); + background-size: 100%; + width: 100%; + height: 100px; +} +#end_demo_words{ + width: 310px; + margin: 0 auto; + font-size: 18px; + line-height: 1.3em; +} +#end_demo_words a{ + color: #ff4040; + font-weight: normal; +} +#end_demo_words a:hover{ + color: #ff8080; +} +#patreon{ + width:200px; height:60px; + background: url(../sprites/end_demo/patreon.png); + background-size: 100%; + margin: 5px auto 15px auto; +} + .clear-both{ clear:both; }