-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 977 Bytes
/
index.html
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
<html>
<head>
<title>Asteroids</title>
<meta charset="utf-8">
<script src="https://code.jquery.com/jquery-1.8.3.min.js" integrity="sha256-YcbK69I5IXQftf/mYD8WY0/KmEDCv1asggHpJk1trM8=" crossorigin="anonymous"></script>
<script src="vector_battle_regular.typeface.js"></script>
<script src="game.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<canvas id="canvas"></canvas>
<div id="unsupported">
<h1>Internet Explorer is not supported</h1>
<h4>Asteroids is only supported on Google Chrome, Mozilla Firefox, Microsoft Edge and Opera</h4>
</div>
<script>
var ua = window.navigator.userAgent;
var msie = ua.indexOf('MSIE'); // IE 10 or older
var trident = ua.indexOf('Trident'); // IE 11
if (msie > 0 || trident > 0) {
$("#unsupported")[0].style.display = "block";
$("#canvas")[0].style.display = "none";
}
</script>
</body>
</html>