-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
executable file
·42 lines (39 loc) · 1.24 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
<!DOCTYPE html>
<!--[if IE 8 ]><html class="ie v8"><![endif]-->
<!--[if IE 9 ]><html class="ie v9"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><html class="" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Prism Effect</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/component.css">
<!--[if lt IE 9]>
<script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="cache">
<!-- masks -->
<img src="img/masks/prism-a.svg">
<img src="img/masks/prism-b.svg">
<img src="img/masks/prism-c.svg">
<!-- photos -->
<img src="img/bird-a.jpg">
<img src="img/bird-b.jpg">
<img src="img/bird-c.jpg">
<img src="img/bird-d.jpg">
</div>
<div class="wrapper">
<div class="prism-slider">
<ul class="navigation"></ul>
</div>
</div>
<!-- JS -->
<script src="js/utils/rAF.js"></script>
<script src="js/utils/easing.js"></script>
<script src="js/PrismSlider.js"></script>
<script src="js/slideshow.js"></script>
</body>
</html>