-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
66 lines (56 loc) · 1.79 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
<!DOCTYPE html>
<html>
<title>SVG Line Morphing Transition</title>
<link rel="stylesheet" href="style.css">
<!-- demo page -->
<div id="demo-page">
<!--main container-->
<div id="main-container">
<!-- <div id="main-container" class="vertical-version"> -->
<!-- images wrapper -->
<div id="images-wrapper">
<figure class="image-wrapper active">
<img src="img/cat-1.jpg" alt="Cat 1">
</figure>
<figure class="image-wrapper">
<img src="img/cat-2.jpg" alt="Cat 2">
</figure>
<figure class="image-wrapper">
<img src="img/cat-3.jpg" alt="Cat 3">
</figure>
<figure class="image-wrapper">
<img src="img/cat-4.jpg" alt="Cat 4">
</figure>
<figure class="image-wrapper">
<img src="img/cat-5.jpg" alt="Cat 5">
</figure>
<figure class="image-wrapper">
<img src="img/cat-6.jpg" alt="Cat 6">
</figure>
</div>
<!-- controls wrapper -->
<div class="controls-wrapper">
<div class="controls">
<!-- circular line -->
<div id="circular-line">
<svg width="38px" height="38px" viewBox="0 0 38 38" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<circle id="circular-line-path" stroke-width="4" cx="19" cy="19" r="17"></circle>
</g>
</svg>
</div>
<!-- straight line -->
<div class="straight-line"></div>
<div class="dot active"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
</div>
</div>
</div>
<script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/1.16.1/TweenMax.min.js"></script>
<script src="interaction.js"></script>
</html>