-
Notifications
You must be signed in to change notification settings - Fork 55
/
send.html
85 lines (85 loc) · 3.98 KB
/
send.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!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, user-scalable=no">
<title>Creative Gooey Effects: Loader</title>
<meta name="description" content="Practical examples of how to apply the Gooey effect by Lucas Bebber" />
<meta name="keywords" content="gooey, effect, inspiration, web design, example, css, svg, filter" />
<meta name="author" content="Lucas Bebber for Codrops" />
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.3.0/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="fonts/vicons/vicons-font.css" />
<link rel="stylesheet" type="text/css" href="css/base.css" />
<link rel="stylesheet" type="text/css" href="css/send.css" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body class="demo-5">
<div class="container">
<header class="codrops-header">
<div class="codrops-links">
<a class="codrops-icon codrops-icon--prev" href="http://tympanus.net/Tutorials/PlayfulTrampolineEffect/" title="Previous Demo"><span>Previous Demo</span></a>
<a class="codrops-icon codrops-icon--drop" href="http://tympanus.net/codrops/?p=23487" title="Back to the article"><span>Back to the Codrops article</span></a>
</div>
<h1>Creative Gooey Effects <span>by <a href="http://twitter.com/lucasbebber">Lucas Bebber</a></span></h1>
<nav class="codrops-demos">
<a href="index.html">Chat App</a>
<a href="menu.html">Menu</a>
<a href="pagination.html">Pagination</a>
<a href="select.html">Selection</a>
<a class="current-demo" href="send.html">Loader</a>
<a href="share.html">Share Button</a>
<a href="player.html">Music Visualizer</a>
</nav>
</header>
<div class="content">
<div class="send">
<div class="send-indicator">
<div class="send-indicator-dot"></div>
<div class="send-indicator-dot"></div>
<div class="send-indicator-dot"></div>
<div class="send-indicator-dot"></div>
</div>
<button class="send-button">
<div class="sent-bg"></div>
<i class="fa fa-send send-icon"></i>
<i class="fa fa-check sent-icon"></i>
</button>
</div>
<p class="info">Based on the Dribble shot <a href="https://dribbble.com/shots/1932977-Materialup">Materialup</a> by Mohamed Kerroudj.</p>
</div>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="800">
<defs>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9" result="goo" />
<feComposite in="SourceGraphic" in2="goo" operator="atop"/>
</filter>
<filter id="goo-no-comp">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9" result="goo" />
</filter>
</defs>
</svg>
<!-- Related demos -->
<section class="content content--related">
<p>If you enjoyed this demo you might also like:</p>
<a class="media-item" href="http://tympanus.net/Development/ElasticSVGElements/">
<img class="media-item__img" src="img/related/MorphingShapeEffects.png">
<h3 class="media-item__title">Elastic SVG Elements</h3>
</a>
<a class="media-item" href="http://tympanus.net/Development/OffCanvasMenuEffects/">
<img class="media-item__img" src="img/related/OffCanvasMenuEffects.png">
<h3 class="media-item__title">Off-Canvas Menu Effects</h3>
</a>
</section>
</div><!-- /container -->
<script src="js/jquery.min.js"></script>
<script src="js/TweenMax.min.js"></script>
<script src="js/send.js"></script>
</body>
</html>