index.html
818 Bytes
<html>
<head>
<title> Oh my Gosh </title>
<link rel="stylesheet" href="css/main.css">
<script type="text/javascript" src="js/parallax.js"></script>
</head>
<body onLoad="init()" onScroll="parallax()">
<div id="background">
<div id="content" class="text">
<h1>Some WebGL tests</h1>
<p>
This is my WebGL playground. The examples are taken from the
book <a href="http://oreil.ly/program-3d-apps-html5-webGL">
Programming 3D Applications with HTML5 and WebGL</a> written
by Tony Parisi and published at O'Reily.
</p>
<h2>Examples</h2>
<p>
<ul>
<li><a href="square.html">square</a></li>
<li><a href="cube.html">cube</a></li>
<li><a href="texture.html">texture</a></li>
</ul>
</p>
</div>
</div>
</body>
</html>
<!-- vim: set ts=4 sw=4: -->