font-awesome-animation/demo/index.html

172 lines
5.4 KiB
HTML
Raw Normal View History

2014-01-22 06:03:43 +08:00
<!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/x-icon" href="favicon.ico">
<link href='http://fonts.googleapis.com/css?family=Gilda+Display' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/monokai.syntax.css">
<link rel="stylesheet" href="vendor/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="../src/font-awesome-animation.css">
</head>
<body>
<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>
<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>
<hr />
</header>
<div class="container" ng-controller="demoCtrl">
<article>
<h1>Getting started</h1>
<section>
<p>
Might not work on &lt; IE10...
</p>
</section>
<section>
<h3>Download</h3>
<h4>Manually</h4>
<p>
The files can be downloaded from:
<ul>
<li>
Minified <a href="https://github.com/l-lin/font-awesome-animation/dist/font-awesome-animation.min.css">CSS</a> for production usage
</li>
<li>
Un-minified <a href="https://github.com/l-lin/font-awesome-animation/dist/font-awesome-animation.css">CSS</a> for development
</li>
</ul>
</p>
<h4>With <a href="http://bower.io">Bower</a></h4>
<br />
<div class="highlight">
<pre><code class="bash"><span class="nv">$ </span>bower install font-awesome-animation
</code></pre>
</div>
</section>
<section>
<h3>Installation</h3>
<p>
Include the CSS file in your <code>index.html</code> file:
<br /><br />
<div class="highlight">
<pre><code class="html"><span class="nt">&lt;link</span> <span class="na">rel=</span><span class="s">"stylesheet"</span> <span class="na">href=</span><span class="s">"font-awesome-animation.min.css"</span><span class="nt">&gt;</span></code></pre>
</div>
</p>
</section>
</article>
<article>
<h1>Usage</h1>
<section>
<p>
Add the desired CSS class to the icon (or any element of your DOM).
</p>
<br />
<div class="demo">
<div class="animation">
<div class="font-animation">
<h3>
On DOM load
</h3>
</div>
<div class="font-animation">
<h3>
On hover
</h3>
</div>
</div>
<div class="animation">
<div class="font-animation">
<a href="#">
<i class="fa fa-wrench wrenching-animation animation"></i>
&nbsp;wrenching-animation animation
</a>
</div>
<div class="font-animation">
<a href="#">
<i class="fa fa-wrench wrenching-animation animation-hover"></i>
&nbsp;wrenching-animation animation-hover
</a>
</div>
</div>
<div class="animation">
<div class="font-animation">
<a href="#">
<i class="fa fa-bell ringing-animation animation"></i>
&nbsp;ringing-animation animation
</a>
</div>
<div class="font-animation">
<a href="#">
<i class="fa fa-bell ringing-animation animation-hover"></i>
&nbsp;ringing-animation animation-hover
</a>
</div>
</div>
<div class="animation">
<div class="font-animation">
<a href="#">
<i class="fa fa-envelope horizontal-animation animation"></i>
&nbsp;horizontal-animation animation
</a>
</div>
<div class="font-animation">
<a href="#">
<i class="fa fa-envelope horizontal-animation animation-hover"></i>
&nbsp;horizontal-animation animation-hover
</a>
</div>
</div>
<div class="animation">
<div class="font-animation">
<a href="#">
<i class="fa fa-thumbs-o-up vertical-animation animation"></i>
&nbsp;vertical-animation animation
</a>
</div>
<div class="font-animation">
<a href="#">
<i class="fa fa-thumbs-o-up vertical-animation animation-hover"></i>
&nbsp;vertical-animation animation-hover
</a>
</div>
</div>
<div class="animation">
<div class="font-animation">
<a href="#">
<i class="fa fa-thumbs-o-up flash-animation animation"></i>
&nbsp;flash-animation animation
</a>
</div>
<div class="font-animation">
<a href="#">
<i class="fa fa-thumbs-o-up flash-animation animation-hover"></i>
&nbsp;flash-animation animation-hover
</a>
</div>
</div>
</div>
</section>
</article>
</div>
<footer>
Designed and built with <i class="fa fa-heart"></i> by <a href="https://github.com/l-lin">Louis LIN</a>
</footer>
</body>
</html>