| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>Pop, Pop, Win!</title> | |
| 5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | |
| 6 <link rel='stylesheet' type='text/css' href='style.css' /> | |
| 7 <link href='fonts/fonts.css' rel='stylesheet' type='text/css'> | |
| 8 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximu
m-scale=1.0, user-scalable=no" /> | |
| 9 </head> | |
| 10 <body> | |
| 11 <canvas id='gameCanvas' width='1024' height='768'></canvas> | |
| 12 <div id='loading'> | |
| 13 <div class='sprite loading_background'> </div> | |
| 14 <div class='sprite loading_bar'> </div> | |
| 15 <div class='sprite loading_text'> </div> | |
| 16 </div> | |
| 17 <div id='popup'> | |
| 18 <div id='about'> | |
| 19 <h1>About</h1> | |
| 20 <p>Developed in <a href="http://www.dartlang.org/" target="_blank">Dart<
/a></p> | |
| 21 <p><a href="https://github.com/dart-lang/pop-pop-win" target="_bla
nk">Source Code</a> is on GitHub</p> | |
| 22 <p><a href="https://github.com/dart-lang/pop-pop-win#license" target="_b
lank">License</a></p> | |
| 23 </div> | |
| 24 <div id='help'> | |
| 25 <h1>Help</h1> | |
| 26 <img src='images/help-surround.jpg'> | |
| 27 <p>Click on balloons to pop them.</p> | |
| 28 <p>A revealed number tells you how many bombs are next to that square.</
p> | |
| 29 <p>The count includes squares above, below, left, right and diagonal.</p
> | |
| 30 <p><em>One of these balloons is a bomb. Can you guess which one?</em></p
> | |
| 31 <img src='images/help-freeze.jpg'> | |
| 32 <p>If you're certain a balloon is hiding a bomb, freeze it.</p> | |
| 33 <p>Freeze a balloon by holding down the shift key and clicking.</p> | |
| 34 <p>Every time you freeze a balloon, the bomb count goes down.</p> | |
| 35 <p>Unfreeze a balloon the same way: shift-click.</p> | |
| 36 </div> | |
| 37 </div> | |
| 38 <script src="interop.js"></script> | |
| 39 <script src="game_app.dart.precompiled.js"></script> | |
| 40 </body> | |
| 41 </html> | |
| OLD | NEW |