-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 1.07 KB
/
index.html
File metadata and controls
23 lines (23 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DaveShade</title>
<link rel="stylesheet" href="homepage/styles.css">
</head>
<body>
<canvas id="test"></canvas>
<div class="main">
<h1>DaveShade</h1>
<h2>A fast cross-api graphics layer.</h2>
<p>DaveShade is made to make development of graphical web applications faster through easy access to any underlying graphics library the browser may have.</p>
<p>A demo can be seen in the backdrop of this page! The <a href="samples/triangle">hello world</a> is here.</p>
<p>DaveShade by default comes with a WebGL module and a base module that can be extended.</p>
<p>To get started grab the <a href="dist/DS3.1.js">latest version</a>, and run <code>DaveShade.createInstance(canvas)</code></p>
</div>
<script> window.mainCanvas = document.getElementById("test"); </script>
<script src="dist/DS3.1.js"></script>
<script src="homepage/script.js"></script>
</body>
</html>