-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path3D-Carousel.html
31 lines (31 loc) · 1.42 KB
/
3D-Carousel.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>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Carousel Gallery</title>
<link rel="stylesheet" href="css/3D-Carousel.css">
</head>
<body>
<div class="carousel3D">
<div id="gallery" class="carousel-container">
<figure id="spinner" class="content-carousel ">
<figure class="shadow"><img src="images/wanaka-tree.jpg" alt=""></figure>
<figure class="shadow"><img src="images/still-lake.jpg" alt=""></figure>
<figure class="shadow"><img src="images/pink-milford-sound.jpg" alt=""></figure>
<figure class="shadow"><img src="images/paradise.jpg" alt=""></figure>
<figure class="shadow"><img src="images/morekai.jpg" alt=""></figure>
<figure class="shadow"><img src="images/milky-blue-lagoon.jpg" alt=""></figure>
<figure class="shadow"><img src="images/lake-tekapo.jpg" alt=""></figure>
<figure class="shadow"><img src="images/milford-sound.jpg" alt=""></figure>
</figure>
</div>
<!-- These controls don't show if content-carousel has spinner class (animation) -->
<a href="#" class="carousel3D-controls controls-left" accesskey="," tabindex="1">◀</a>
<a href="#" class="carousel3D-controls controls-right" accesskey="." tabindex="2">▶</a>
</div>
<!-- don't forget to add script and modify its path -->
<script src="./js/carousel3D.js"></script>
</body>
</html>