Mercurial
comparison color_game/index.html @ 179:8d17f6e6e290
[ThirdParty] Added emsdk bazel rules that can be supported by bazel 9.0.0
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Thu, 22 Jan 2026 21:23:17 -0800 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 178:94705b5986b3 | 179:8d17f6e6e290 |
|---|---|
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 5 <title>Raylib</title> | |
| 6 <style> | |
| 7 body { margin: 0; background-color: black; overflow: hidden; } | |
| 8 canvas.emscripten { border: 0 none; background-color: black; width: 100%; height: 100vh; display: block; } | |
| 9 </style> | |
| 10 </head> | |
| 11 <body> | |
| 12 <canvas class="emscripten" id="game" oncontextmenu="event.preventDefault()"></canvas> | |
| 13 <script type='text/javascript' src="main.js"></script> | |
| 14 </body> | |
| 15 </html> |