-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (39 loc) · 1.94 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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1,requiresActiveX=true">
<link rel="dns-prefetch" href="//ajax.googleapis.com">
<title>CSS3 Keyframe Animations</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="robots" content="all">
<link rel="author" type="text/plain" href="humans.txt">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="wrapper">
<h1>CSS3 Animations</h1>
<div class="wiggle circle"><div><h1>Wiggle</h1></div></div>
<div class="throb circle"><div><h1>Throb</h1></div></div>
<div class="flutter circle"><div><h1>Flutter</h1></div></div>
<div class="bounce circle"><div><h1>Bounce</h1></div></div>
<div class="bounce-shadow circle"><div><h1>Shadow Bounce</h1></div></div>
<div class="tada circle"><div><h1>Tada</h1></div></div>
<div class="flip-out circle"><div><h1>flip out</h1></div></div>
<div class="flip-in circle"><div><h1>flip in</h1></div></div>
<div class="floating circle"><div><h1>floating</h1></div></div>
<div class="zooming circle"><div><h1>zooming</h1></div></div>
<div class="swinging circle"><div><h1>swinging</h1></div></div>
<div class="pulsing circle"><div><h1>pulsing</h1></div></div>
<div class="tilt circle"><div><h1>titlt</h1></div></div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="assets/js/libs/jquery-1.10.2.min.js"><\/script>')</script>
<script src="./assets/js/script.js"></script>
</body>
</html>