forked from l-lin/font-awesome-animation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (60 loc) · 2.8 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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Font Awesome Animation</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="icon" type="image/png" href="favicon.png">
<link href='http://fonts.googleapis.com/css?family=Gilda+Display' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="vendor/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="vendor/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/monokai.css">
<link rel="stylesheet" href="dist/font-awesome-animation.min.css">
</head>
<body ng-app="fontAwesomeAnimationDemoApp">
<div class="github-ribbon">
<a href="https://github.com/l-lin/font-awesome-animation">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub">
</a>
</div>
<header class="header">
<h1><a href="https://github.com/l-lin/font-awesome-animation">Font Awesome Animation</a></h1>
<p>
Simple animations using <a href="http://fortawesome.github.io/Font-Awesome/">FontAwesome</a> and some CSS3.
</p>
</header>
<div class="main-container">
<div class="container">
<article class="main-content">
<header class="article-header">
<h1><i class="fa fa-gear faa-spin animated"></i> Getting started</h1>
</header>
<section class="article-content" ng-include="'demo/partials/getting_started.html'"></section>
</article>
<article class="main-content">
<header class="article-header">
<h1><i class="fa fa-play faa-horizontal animated"></i> Usage</h1>
</header>
<section class="article-content" ng-include="'demo/partials/usage.html'"></section>
</article>
</div>
</div>
<footer class="footer">
<div class="footer-note">
Designed and built with <i class="fa fa-heart faa-pulse animated"></i> by <a href="https://github.com/l-lin">Louis LIN</a>
</div>
</footer>
<script src="vendor/jquery/dist/jquery.min.js"></script>
<script src="vendor/angular/angular.min.js"></script>
<script src="vendor/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="vendor/angular-bootstrap/ui-bootstrap.min.js"></script>
<script src="vendor/angular-bootstrap/ui-bootstrap-tpls.min.js"></script>
<script src="demo/app.js"></script>
</body>
</html>