-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
31 lines (25 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>CSS 3D Carousel Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="./demo.css">
<style type="text/css">
body {
text-align: center;
margin: 0px;
}
</style>
<script type="text/javascript" src="../swipe/swipe.js"></script>
<script type="text/javascript" src="./prefixfree.min.js"></script>
<script type="text/javascript" src="./3dcarousel.js"></script>
<script type="text/javascript" src="./demo.js"></script>
</head>
<body>
<div id="container">
</div>
<p>On devices where you can't swipe left and right, use the keyboard left and right arrows to animate.</p>
<p>Chrome users may experience issues if their graphics card is <a href='http://www.kaizou.org/2012/09/hardware-acceleration-in-chrome/'>blacklisted</a></p>
<p>Please refer to <a href='http://www.kaizou.org/2011/08/pure-css-3d-carousel/'>this post</a> for an explaination of how it works.</p>
</body>
</html>