File: index.html

package info (click to toggle)
openrct2 0.4.32%2Bds-1
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid
  • size: 106,540 kB
  • sloc: cpp: 678,656; ansic: 1,322; javascript: 716; xml: 676; sh: 436; python: 313; php: 34; makefile: 19
file content (29 lines) | stat: -rw-r--r-- 915 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
    <head>
        <title>OpenRCT2</title>
        <script src="https://cdn.jsdelivr.net/npm/jszip@3.10.1/dist/jszip.min.js" crossorigin=anonymous></script>
        <style>
            * { padding: 0; margin: 0; }
            canvas {
                display: block;
                margin: 0 auto;
                position: fixed;
                left: 0;
                right: 0;
                width: 100%;
                height: 100%;
            }
        </style>
        <script src="index.js"></script>
    </head>
    <body>
        <p id="loadingWebassembly">Please wait... Loading webassembly</p>
        <div id="beforeLoad" style="display:none;">
            <p id="statusMsg">Please select your RCT2 assets (zip file):</p>
            <input type="file" id="selectFile"></input>
        </div>
        <canvas id="canvas" style="display:none;"></canvas>
    </body>
</html>