You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
798 B
29 lines
798 B
<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>
|
|
<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>
|
|
</body>
|
|
</html>
|
|
<!-- vim: set ts=4 sw=4: -->
|