forked from ionic-team/ionicons
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimation.html
More file actions
Latest commit
107 lines (91 loc) · 1.94 KB
/
Copy pathanimation.html
File metadata and controls
107 lines (91 loc) · 1.94 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
<!DOCTYPE html>
<html>
<head>
<title>Ionicons Animations</title>
<style>
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin:0;
padding:0;
}
body {
background:#fff;
color:#444;
font:16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a,a:visited {
color:#888;
text-decoration: underline;
}
a:hover,a:focus { color:#000; }
p { margin-bottom:20px; }
header {
border-bottom:2px solid #ddd;
margin-bottom:20px;
overflow: hidden;
padding:20px0;
}
headerh1 {
color:#888;
float: left;
font-size:36px;
font-weight:300;
}
headera {
float: right;
font-size:14px;
}
.container {
margin:0 auto;
max-width:1200px;
min-width:960px;
padding:020px;
width:95%;
}
.icon {
font-size:32px;
}
</style>
<linkhref="css/ionicons.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<divclass="container">
<header>
<h1>Ionicons Animations:</h1>
<p><ahref="http://ionicons.com/">Ionicons Homepage</a></p>
</header>
<divclass="content">
<h3>.ion-refreshing</h3>
<p>
<iclass="icon ion-refreshing"></i>
</p>
<h3>.ion-ios7-reloading</h3>
<p>
<iclass="icon ion-ios7-reloading"></i>
</p>
<h3>.ion-loading-a</h3>
<p>
<iclass="icon ion-loading-a"></i>
</p>
<h3>.ion-loading-b</h3>
<p>
<iclass="icon ion-loading-b"></i>
</p>
<h3>.ion-loading-c</h3>
<p>
<iclass="icon ion-loading-c"></i>
</p>
<h3>.ion-loading-d</h3>
<p>
<iclass="icon ion-loading-d"></i>
</p>
<h3>.ion-looping</h3>
<p>
<iclass="icon ion-looping"></i>
</p>
</div>
</div>
</body>
</html>