AntimatterDimensionsSourceCode/public/index.html

59 lines
2.7 KiB
HTML
Raw Normal View History

<!doctype html>
2019-07-25 12:52:03 +00:00
<html lang="en">
<head>
<meta charset="utf-8">
2019-07-25 12:52:03 +00:00
<title>Antimatter Dimensions</title>
<link rel="icon" type="image/png" href="icon.png">
<meta name="Antimatter Dimensions" content="A game about huge numbers and watching them go up." >
2019-07-25 12:52:03 +00:00
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="stylesheets/fontawesome/css/all.css">
2019-07-25 12:52:03 +00:00
<link rel="stylesheet" type="text/css" href="stylesheets/codemirror/codemirror.css">
<link rel="stylesheet" type="text/css" href="stylesheets/codemirror/show-hint.css">
<link rel="stylesheet" type="text/css" href="stylesheets/codemirror/lint.css">
<link rel="stylesheet" type="text/css" href="stylesheets/codemirror/panda-syntax.css">
<link rel="stylesheet" type="text/css" href="stylesheets/codemirror/liquibyte.css">
<link rel="stylesheet" type="text/css" href="stylesheets/vue-sfc-classes.css">
2019-07-25 12:52:03 +00:00
<link rel="stylesheet" type="text/css" href="stylesheets/ad-slider-component.css">
<link rel="stylesheet" type="text/css" href="stylesheets/glyphs.css">
<link rel="stylesheet" type="text/css" href="stylesheets/styles.css?3">
<link rel="stylesheet" type="text/css" href="stylesheets/automator.css">
<link rel="stylesheet" type="text/css" href="stylesheets/time-studies.css">
<link rel="stylesheet" type="text/css" href="stylesheets/tooltips.css">
2019-07-31 21:30:20 +00:00
<link rel="stylesheet" type="text/css" href="stylesheets/vis-network.css">
</head>
2019-07-25 12:52:03 +00:00
<body>
<div id="browser-warning">
2023-02-16 00:03:21 +00:00
Your browser is not supported.
<br>
Please update to a newer browser.
</div>
2019-11-20 18:39:49 +00:00
<div id="loading"></div>
2019-07-25 12:52:03 +00:00
<div id="ui"></div>
<div id="background-animations">
2019-08-27 22:03:10 +00:00
<div class="videocontainer videocontainer--background">
<video autoplay muted loop id="stars">
2021-09-29 03:38:24 +00:00
<source src="images/stars-bg.webm" type="video/webm">
</video>
2019-07-25 12:52:03 +00:00
</div>
2019-11-20 18:51:06 +00:00
<div id="snow" style="display: none;"></div>
</div>
2019-07-25 12:52:03 +00:00
<div class="videocontainer">
2019-11-20 18:51:06 +00:00
<video preload muted id="realityanimbg" style="opacity: 0; display: none;">
2019-07-25 12:52:03 +00:00
<source src="images/realityanimbg.webm" type="video/webm">
</video>
2019-07-25 12:52:03 +00:00
</div>
<div id="performance-stats" class="c-performance-stats" style="display: none;"></div>
</body>
<script>
2022-03-24 01:59:00 +00:00
// We use an IE only document variable to check here to force it to show the browser warning.
2022-03-24 00:04:36 +00:00
// For some reason, IE really does *not* want to cooperate, even when you have a file as a <script> that you load
2023-02-16 00:03:21 +00:00
// in the body.
2022-03-24 01:59:00 +00:00
// Other browsers will be checked whenever window.onload is ran.
if (document.documentMode) {
document.getElementById("loading").style.display = "none";
document.getElementById("browser-warning").style.display = "flex";
}
</script>
</html>