| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html lang="en-us"> | |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 5 <title>Pop, Pop, Win!</title> | |
| 6 <link rel="shortcut icon" href="favicon.ico" /> | |
| 7 <link rel='stylesheet' type='text/css' href='packages/pop_pop_win/assets/sty
le.css' /> | |
| 8 <link href='http://fonts.googleapis.com/css?family=Josefin+Sans:400,700|Slac
key' rel='stylesheet' type='text/css'> | |
| 9 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximu
m-scale=1.0, user-scalable=no" /> | |
| 10 <script type="application/dart" src="game_web.dart"></script> | |
| 11 <script src="packages/browser/dart.js"></script> | |
| 12 </head> | |
| 13 <body> | |
| 14 <canvas id='gameCanvas' width='2048' height='1536' style="width:100%; height
:100%; top:0; left:0;"></canvas> | |
| 15 <div id='popup'> | |
| 16 <div id='about'> | |
| 17 <h1>About</h1> | |
| 18 <p class="difficulty">Set Difficulty: <a href="#7">Easy</a> | <a href="#
11">Medium</a> | <a href="#16">Hard</a> | <a href="#24">Extreme</a></p> | |
| 19 <p>Developed with <a href="http://www.dartlang.org/" target="_blank">Dar
t</a> and <a href="http://www.stagexl.org/" target="_blank">StageXL</a></p> | |
| 20 </div> | |
| 21 <div id='help'> | |
| 22 <h1>Help</h1> | |
| 23 <img src='packages/pop_pop_win/assets/images/help-surround.jpg' width='1
40' height='142'> | |
| 24 <p>Click on balloons to pop them.</p> | |
| 25 <p>A revealed number tells you how many bombs are next to that square.</
p> | |
| 26 <p>The count includes squares above, below, left, right and diagonal.</p
> | |
| 27 <p><em>One of these balloons is a bomb. Can you guess which one?</em></p
> | |
| 28 <img src='packages/pop_pop_win/assets/images/help-freeze.jpg' width='140
' height='141'> | |
| 29 <p>If you're certain a balloon is hiding a bomb, freeze it.</p> | |
| 30 <p>Freeze a balloon by shift- or right-clicking.</p> | |
| 31 <p>Every time you freeze a balloon, the bomb count goes down.</p> | |
| 32 <p>Unfreeze a balloon the same way: shift- or right-click.</p> | |
| 33 </div> | |
| 34 </div> | |
| 35 </body> | |
| 36 </html> | |
| OLD | NEW |