Font-awesome: Icon Request: blinking effect

Created on 4 Dec 2013  路  16Comments  路  Source: FortAwesome/Font-Awesome

The spinning icon has an amazing effect, but I believe it will be useful a blinking (fade in/ fade out) effect for signaling events in the interface. This could be done with transparency, using CSS3 transformations.

Sample:

 @keyframes fa-blink {
     0% { opacity: 1; }
     25% { opacity: 0.25; }
     50% { opacity: 0.5; }
     75% { opacity: 0.75; }
     100% { opacity: 0; }
 }
.fa-blink {
   -webkit-animation: fa-blink .75s linear infinite;
   -moz-animation: fa-blink .75s linear infinite;
   -ms-animation: fa-blink .75s linear infinite;
   -o-animation: fa-blink .75s linear infinite;
   animation: fa-blink .75s linear infinite;
}

BTW, great job!

Most helpful comment

+1

little note: the 0.25 and 0.75 are misplaced

All 16 comments

Well done, mate!

+1

+1

+1

+1

+1

well done

+1

+1

+1

little note: the 0.25 and 0.75 are misplaced

+1

+1

+1

+1

+1

+1

Was this page helpful?
0 / 5 - 0 ratings

Related issues

yarcowang picture yarcowang  路  3Comments

seppestas picture seppestas  路  3Comments

brystfire08 picture brystfire08  路  3Comments

desspro picture desspro  路  3Comments

jakuuub picture jakuuub  路  3Comments