-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·112 lines (112 loc) · 4.23 KB
/
index.html
File metadata and controls
executable file
·112 lines (112 loc) · 4.23 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Wobbly Slideshow Effect</title>
<meta name="description" content="Wobbly slideshow effect using Snap.svg" />
<meta name="keywords" content="slideshow, wobbly, jelly, effect, svg, snap.svg, web design" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="../favicon.ico">
<link href='http://fonts.googleapis.com/css?family=Flamenco' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/slideshow.css" />
<script src="js/snap.svg-min.js"></script>
<script src="js/modernizr.custom.js"></script>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div id="slideshow" class="slideshow">
<ul>
<li>
<div class="slide">
<div class="codrops-links">
<a class="codrops-icon codrops-icon-prev" href="http://tympanus.net/Development/TooltipStylesInspiration/"><span>Previous Demo</span></a>
<a class="codrops-icon codrops-icon-drop" href="http://tympanus.net/codrops/?p=20714"><span>Back to the Codrops Article</span></a>
</div>
<img class="icon" src="img/icons/browser.svg" alt="Browser Icon"/>
<h1>Wobbly Slideshow Effect</h1>
<p>Based on the Dribble shot <br /><a href="https://dribbble.com/shots/1701001-GIF-Exercise">GIF Exercise</a> by <a href="https://dribbble.com/SergeyValiukh">Sergey Valiukh</a></p>
</div>
</li>
<li>
<div class="slide">
<img class="icon" src="img/icons/heart.svg" alt="Heart Icon"/>
<blockquote>
<p>Never fear quarrels, but seek hazardous adventures.</p>
</blockquote>
<p>Alexandre Dumas</p>
</div>
</li>
<li>
<div class="slide">
<img class="icon" src="img/icons/letter.svg" alt="Letter Icon"/>
<blockquote>
<p>If you don't know where you are going, any road will get you there.</p>
</blockquote>
<p>Lewis Carroll</p>
</div>
</li>
<li>
<div class="slide">
<img class="icon" src="img/icons/football.svg" alt="Football Icon"/>
<blockquote>
<p>Procrastination is the art of keeping up with yesterday.</p>
</blockquote>
<p>Don Marquis</p>
</div>
</li>
<li>
<div class="slide">
<img class="icon" src="img/icons/match.svg" alt="Match Icon"/>
<blockquote>
<p>I'm an idealist. I don't know where I'm going, but I'm on my way.</blockquote>
<p>Carl Sandburg</p>
</div>
</li>
<li>
<div class="slide">
<img class="icon" src="img/icons/watch.svg" alt="Watch Icon"/>
<blockquote>
<p>I refuse to join any club that would have me as a member.</blockquote>
<p>Groucho Marx</p>
</div>
</li>
<li>
<div class="slide">
<div class="codrops-links">
<a class="codrops-icon codrops-icon-prev" href="http://tympanus.net/Development/TooltipStylesInspiration/"><span>Previous Demo</span></a>
<a class="codrops-icon codrops-icon-drop" href="http://tympanus.net/codrops/?p=20714"><span>Back to the Codrops Article</span></a>
</div>
<div class="related">
<p>If you enjoyed this demo you might also like:</p>
<a href="http://tympanus.net/Tutorials/PagePreloadingEffect/">
<img src="img/related/PagePreloadingEffect.png" />
<h3>Page Preloading Effect</h3>
</a>
<a href="http://tympanus.net/Development/ButtonComponentMorph/">
<img src="img/related/MorphingButtons.png" />
<h3>Morphing Buttons</h3>
</a>
</div>
</div>
</li>
</ul>
</div>
</div><!-- /container -->
<script src="js/classie.js"></script>
<script src="js/sliderFx.js"></script>
<script>
(function() {
new SliderFx( document.getElementById('slideshow'), {
easing : 'cubic-bezier(.8,0,.2,1)'
} );
})();
</script>
</body>
</html>