-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (63 loc) · 1.85 KB
/
index.html
File metadata and controls
73 lines (63 loc) · 1.85 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>haxe-babylon-samples</title>
<style>
div {
width: 200px;
margin: 30px;
}
h2 {
font: 400 40px/1.5 Helvetica, Verdana, sans-serif;
margin: 0;
padding: 0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
font: 200 20px/1.5 Helvetica, Verdana, sans-serif;
border-bottom: 1px solid #ccc;
height: 30px;
}
li:last-child {
border: none;
}
li a {
text-decoration: none;
color: #000;
-webkit-transition: font-size 0.3s ease, background-color 0.3s ease;
-moz-transition: font-size 0.3s ease, background-color 0.3s ease;
-o-transition: font-size 0.3s ease, background-color 0.3s ease;
-ms-transition: font-size 0.3s ease, background-color 0.3s ease;
transition: font-size 0.3s ease, background-color 0.3s ease;
display: block;
width: 200px;
}
li a:hover {
font-size: 23px;
background: #f6f6f6;
}
</style>
</head>
<body>
<h2>haxe-babylon-samples</h2>
<ul>
<li><a href="./samples/AdvancedShadows">AdvancedShadows</a></li>
<li><a href="./samples/AssetManager">AssetManager</a></li>
<li><a href="./samples/AudioAnalyser">AudioAnalyser</a></li>
<li><a href="./samples/Bones101">Bones101</a></li>
<li><a href="./samples/Boom">Boom</a></li>
<li><a href="./samples/Heightmap">Heightmap</a></li>
<li><a href="./samples/Lines">Lines</a></li>
<li><a href="./samples/PBRGlossy">PBRGlossy</a></li>
<li><a href="./samples/Particles">Particles</a></li>
<li><a href="./samples/SimultaneousLights">SimultaneousLights</a></li>
<li><a href="./samples/Sprites">Sprites</a></li>
<li><a href="./samples/StandardRenderingPipeline">StandardRenderingPipeline</a></li>
</ul>
</body>
</html>