Monday, April 20, 2020

How to make your Font Awesome spin and or blink

To spin your Font Awesome Icon add this to your code., fa-spin to the end of your code.

Code:
<i class="fas fa-gavel fa-spin"></i>
For Blinking Font Awesome Icons, add this code to your xenForo extra.less

Code:
.blink {
      animation: blink 2s steps(5, start) infinite;
      -webkit-animation: blink 1s steps(5, start) infinite;
    }
    @keyframes blink {
      to {
        visibility: hidden;
      }
    }
    @-webkit-keyframes blink {
      to {
        visibility: hidden...
How to make your Font Awesome spin and or blink


source https://xfworld.net/threads/how-to-make-your-font-awesome-spin-and-or-blink.43210/

No comments:

Post a Comment