-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (80 loc) · 2.05 KB
/
index.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
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
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>动画文件导航</title>
<style ref="stylesheet">
#container{
position: absolute;
left:45%;
}
</style>
</head>
<body>
<div id="container">
<div id="WebGL">
<h1>WebGL</h1>
<ul>
<li>
<a href="./WebGL/firstWebGL/index.html">第一个WebGL程序</a>
</li>
<li>
<a href="./WebGL/drawPoint/index.html">原生画点</a>
</li>
<li>
<a href="./WebGL/drawTriangle/index.html">渐变颜色三角形</a>
</li>
<li>
<a href="./WebGL/drawMutipleRects/index.html">鼠标点击移动画矩形(rubber band)(双buffer实现)</a>
</li>
<li>
<a href="./WebGL/drawMutipleRectsTwoPass/index.html">鼠标点击移动画矩形(rubber band)(双pass实现)</a>
</li>
</ul>
</div>
<div id="threejs">
<h1>threejs</h1>
<ul>
<li>
<a href="./threejs/firstThreejs/index.html">第一个threejs程序</a>
</li>
<li>
<a href="./threejs/drawLine/index.html">画线</a>
</li>
<li>
<a href="./threejs/loadObj/index.html">加载模型</a>
</li>
<li>
<a href="./threejs/loadTextureToModel/index.html">加载OBJ模型,手动贴图</a>
</li>
</ul>
</div>
<div id="lottie">
<h1>lottie</h1>
<ul>
<li>
<a href="./lottie/firstLottie/index.html">第一个lottie程序</a>
</li>
</ul>
</div>
<div id="canvas">
<h1>Canvas</h1>
<ul>
<li>
<a href="./explosionCanvas/index.html">canvas爆开动画</a>
</li>
</ul>
</div>
<div id="javascript">
<h1>Javascript</h1>
<ul>
<li>
<a href="./javascript/scrollFollow/index.html">滚动跟随</a>
</li>
</ul>
</div>
</div>
</body>
</html>