-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
28 lines (23 loc) · 865 Bytes
/
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
<!DOCTYPE html>
<html>
<title>Sliced Slideshow UI</title>
<link rel="stylesheet" href="style.css">
<!-- sections wrapper -->
<div id="sections-wrapper">
<section class="show" data-img="img/mountain.jpg"></section>
<section class="hide-bottom" data-img="img/shore.jpg"></section>
<section class="hide-bottom" data-img="img/twilight.jpg"></section>
<section class="hide-bottom" data-img="img/parachute.jpg"></section>
<section class="hide-bottom" data-img="img/sky.jpg"></section>
</div>
<!-- sections control -->
<div class="sections-control">
<div class="section-thumbnail active"></div>
<div class="section-thumbnail"></div>
<div class="section-thumbnail"></div>
<div class="section-thumbnail"></div>
<div class="section-thumbnail"></div>
</div>
<script src="anime.min.js"></script>
<script src="interaction.js"></script>
</html>