-
Notifications
You must be signed in to change notification settings - Fork 201
/
part1.html
31 lines (31 loc) · 1.67 KB
/
part1.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
27
28
29
30
31
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>The Aviator: Part 1 | Codrops</title>
<meta name="description" content="Demo of part 1: The Making of 'The Aviator': Animating a Basic 3D Scene with Three.js" />
<meta name="keywords" content="three.js, webgl, tutorial, game, 3d, animation, airplane, web development, javascript" />
<meta name="author" content="Karim Maaloul for Codrops" />
<link rel="shortcut icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Playfair+Display:400,700,700italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<script type="text/javascript" src="js/three.min.js"></script>
<script type="text/javascript" src="js/main_step1.js"/></script>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="world" id="world"></div>
<nav class="meta">
<a class="codrops-icon codrops-icon--prev" href="http://tympanus.net/Development/Interactive3DMallMap/" title="Previous Demo"><span>Previous Demo</span></a>
<a class="codrops-icon codrops-icon--drop" href="http://tympanus.net/codrops/?p=26501" title="Back to the article"><span>Back to the Codrops article</span></a>
<a class="demo-link demo-link--current" href="part1.html">Part 1</a>
<a class="demo-link" href="part2.html">Part 2</a>
<a class="demo-link" href="index.html">Game</a>
</nav>
</body>
</html>