mirror of
https://github.com/l-lin/font-awesome-animation.git
synced 2024-12-26 21:41:31 +08:00
Merge branch 'Crecket-master'
This commit is contained in:
commit
469956d0b0
@ -266,6 +266,26 @@
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
<a href="#">
|
||||
<i class="fa fa-space-shuttle faa-passing-reverse animated"></i>
|
||||
faa-passing-reverse animated
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<a href="#">
|
||||
<i class="fa fa-space-shuttle faa-passing-reverse animated-hover"></i>
|
||||
faa-passing-reverse animated-hover
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<a href="#" class="faa-parent animated-hover">
|
||||
<i class="fa fa-space-shuttle faa-passing-reverse"></i>
|
||||
faa-passing-reverse
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
<a href="#">
|
||||
|
68
dist/font-awesome-animation.css
vendored
68
dist/font-awesome-animation.css
vendored
File diff suppressed because one or more lines are too long
2
dist/font-awesome-animation.min.css
vendored
2
dist/font-awesome-animation.min.css
vendored
File diff suppressed because one or more lines are too long
@ -293,6 +293,30 @@
|
||||
animation: passing 3s linear infinite;
|
||||
}
|
||||
|
||||
/* PASSING REVERSE */
|
||||
|
||||
@keyframes passing-reverse {
|
||||
0% {transform:translateX(50%); opacity:0}
|
||||
50% {transform:translateX(0%); opacity:1}
|
||||
100% {transform:translateX(-50%); opacity:0}
|
||||
}
|
||||
|
||||
.faa-passing-reverse.animated,
|
||||
.faa-passing-reverse.animated-hover:hover,
|
||||
.faa-parent.animated-hover:hover > .faa-passing-reverse {
|
||||
animation: passing-reverse 2s linear infinite;
|
||||
}
|
||||
.faa-passing-reverse.animated.faa-fast,
|
||||
.faa-passing-reverse.animated-hover.faa-fast:hover,
|
||||
.faa-parent.animated-hover:hover > .faa-passing-reverse.faa-fast {
|
||||
animation: passing-reverse 1s linear infinite;
|
||||
}
|
||||
.faa-passing-reverse.animated.faa-slow,
|
||||
.faa-passing-reverse.animated-hover.faa-slow:hover,
|
||||
.faa-parent.animated-hover:hover > .faa-passing-reverse.faa-slow {
|
||||
animation: passing-reverse 3s linear infinite;
|
||||
}
|
||||
|
||||
/* WAVE */
|
||||
@keyframes burst {
|
||||
0% {opacity:.6}
|
||||
|
Loading…
Reference in New Issue
Block a user