mirror of
https://github.com/ForkAwesome/Fork-Awesome.git
synced 2025-01-31 15:38:24 +08:00
78c90cd804
Add .fa-lg to alert which was missing it
43 lines
2.0 KiB
HTML
43 lines
2.0 KiB
HTML
<section id="animated">
|
|
<h2 class="page-header">
|
|
Animated Icons
|
|
<div class="pull-right text-default margin-top padding-top-sm hidden-xs">
|
|
<a href="https://github.com/FortAwesome/Font-Awesome/blob/{{ site.fontawesome.doc_blob }}/less/animated.less" class="text-muted padding-right">View LESS</a>
|
|
<a href="https://github.com/FortAwesome/Font-Awesome/blob/{{ site.fontawesome.doc_blob }}/scss/_animated.scss" class="text-muted">View SASS</a>
|
|
</div>
|
|
</h2>
|
|
<div class="row">
|
|
<div class="col-md-3 col-sm-4">
|
|
<p>
|
|
<i class="fa fa-spinner fa-spin fa-3x fa-fw margin-bottom"></i>
|
|
<i class="fa fa-circle-o-notch fa-spin fa-3x fa-fw margin-bottom"></i>
|
|
<i class="fa fa-refresh fa-spin fa-3x fa-fw margin-bottom"></i>
|
|
<i class="fa fa-cog fa-spin fa-3x fa-fw margin-bottom"></i>
|
|
<i class="fa fa-spinner fa-pulse fa-3x fa-fw margin-bottom"></i>
|
|
</p>
|
|
</div>
|
|
<div class="col-md-9 col-sm-8">
|
|
<p>
|
|
Use the <code>fa-spin</code> class to get any icon to rotate, and use <code>fa-pulse</code> to have it rotate
|
|
with 8 steps. Works well with <code>fa-spinner</code>, <code>fa-refresh</code>, and <code>fa-cog</code>.
|
|
</p>
|
|
{% highlight html %}
|
|
<i class="fa fa-spinner fa-spin"></i>
|
|
<i class="fa fa-circle-o-notch fa-spin"></i>
|
|
<i class="fa fa-refresh fa-spin"></i>
|
|
<i class="fa fa-cog fa-spin"></i>
|
|
<i class="fa fa-spinner fa-pulse"></i>
|
|
{% endhighlight %}
|
|
<p class="alert alert-success">
|
|
<i class="fa fa-exclamation-triangle fa-lg"></i>
|
|
Some browsers on some platforms have issues with animated icons resulting in a jittery wobbling effect. See
|
|
<a href="https://github.com/FortAwesome/Font-Awesome/issues/671" class="alert-link" target="_blank">issue #671</a>
|
|
for examples and possible workarounds.
|
|
</p>
|
|
<p class="alert alert-success">
|
|
<i class="fa fa-info-circle fa-lg"></i> CSS3 animations aren't supported in IE8 - IE9.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|