mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-18 16:01:47 +03:00
0854a2fefd
- changed launcher version field in neutralino configs - updated vite dependency version - added launcher background and social buttons reactive loading - added `Cache` class that probably will be useless in future -
43 lines
No EOL
1.5 KiB
HTML
43 lines
No EOL
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<link rel="stylesheet" lang="sass" href="/src/sass/index.sass" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app" theme="light">
|
|
<img class="background" :src="backgroundUri">
|
|
|
|
<div class="downloader-panel" theme="dark">
|
|
<div class="downloader-label">
|
|
<span id="downloaded">Downloading</span>
|
|
<span id="speed"></span>
|
|
<span id="eta"></span>
|
|
</div>
|
|
|
|
<div class="progress-bar">
|
|
<div class="progress"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="launcher-content">
|
|
<iframe id="social" :src="socialUri" scrolling="no" style="position: absolute; border: 0; top: 0; left: 0;" width="100%" height="100%"></iframe>
|
|
</div>
|
|
|
|
<div id="settings">
|
|
<img src="/src/assets/images/gear.png" class="unactive">
|
|
<img src="/src/assets/images/gear-active.png" class="active">
|
|
</div>
|
|
|
|
<button class="button" id="launch" i18id="Launch">Launch</button>
|
|
</div>
|
|
|
|
<script src="neutralino.js"></script>
|
|
|
|
<script type="module" src="/src/entry.js"></script>
|
|
<script type="module" lang="ts" src="/src/pages/index.ts"></script>
|
|
</body>
|
|
</html> |