How to change color of Font Awesome stacked icons on hover

ReturnOfTheMac

I'm using two Font Awesome icons:

  • fa-circle-thin
  • fa-user-plus

They are stacked on top of one another to give a circle icon look.

<span class="fa-stack fa-sm">
 <i class="fa fa-circle-thin fa-stack-2x"></i>
 <i class="fa fa-user-plus fa-stack-1x "></i>
</span>

When I hover over I want the circle to be filled in black and the fa-user-plus to change to white. How can I achieve this?

See JSFiddle: http://jsfiddle.net/ReturnOfTheMac/Lwdaen75/

Grokify

To achieve the desired effect, add a fa-circle icon to the stack that will be transparent on display (opacity:0.0) and solid (opacity:1.0) on :hover.

For example (also on JSFiddle: http://jsfiddle.net/2hxxuv52/5/):

HTML

<span class="fa-stack fa-sm">
  <i class="fa fa-circle fa-stack-2x "></i>
  <i class="fa fa-circle-thin fa-stack-2x"></i>
  <i class="fa fa-user-plus fa-stack-1x "></i>
</span>

CSS

.fa-stack        .fa { color: black; }
.fa-stack        .fa.fa-circle-thin { color: black; }
.fa-stack        .fa.fa-circle { opacity:0.0; color:black; }

.fa-stack:hover  .fa.fa-user-plus { color: white; }
.fa-stack:hover  .fa.fa-circle-thin { color: black; }
.fa-stack:hover  .fa.fa-circle { opacity:1.0 }

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to change color of font awesome icons

From Dev

Font Awesome hover of stacked icons not working properly

From Dev

Font-Awesome Icons, Change Color In The Middle of The Icon (The Text) On Hover

From Dev

How to change font awesome icon hover color?

From Dev

Change color of Font Awesome icons when they selected

From Dev

Change color when hover a font awesome icon?

From Dev

font awesome - stack circle color change on hover

From Dev

How to align stacked Font-Awesome icons correctly

From Dev

How to align stacked Font-Awesome icons correctly

From Dev

Stacked font awesome icons with transparent middle?

From Dev

Font Awesome social icons stacked in Bootstrap navbar

From Dev

vertical alignment of stacked icons in font awesome

From Dev

How to change hover color for iconfont icons?

From Java

How to style icon color, size, and shadow of Font Awesome Icons

From Dev

How to change color of font icons in android

From Dev

Bootstrap 3: Can the Glyphicons be stacked like Font Awesome's icons?

From Dev

font awesome hover color margin turns black

From Dev

How to change font-awesome icon color when it is active

From Dev

How to change font-awesome icon color when it is active

From Dev

How to offset overlapped Font Awesome icons?

From Java

How to center Font Awesome icons horizontally?

From Dev

How to debug Font-Awesome icons?

From Dev

How solve flickering Font Awesome Icons?

From Dev

How to create icons like font awesome

From Dev

How to get Png files of Font awesome icons?

From Dev

How to make font awesome icons large?

From Dev

Align Font Awesome icons (fa-2x) with stacked icons (fa-stack)

From Dev

How to show font awesome icon on hover

From Dev

How to show font awesome icon on hover

Related Related

  1. 1

    How to change color of font awesome icons

  2. 2

    Font Awesome hover of stacked icons not working properly

  3. 3

    Font-Awesome Icons, Change Color In The Middle of The Icon (The Text) On Hover

  4. 4

    How to change font awesome icon hover color?

  5. 5

    Change color of Font Awesome icons when they selected

  6. 6

    Change color when hover a font awesome icon?

  7. 7

    font awesome - stack circle color change on hover

  8. 8

    How to align stacked Font-Awesome icons correctly

  9. 9

    How to align stacked Font-Awesome icons correctly

  10. 10

    Stacked font awesome icons with transparent middle?

  11. 11

    Font Awesome social icons stacked in Bootstrap navbar

  12. 12

    vertical alignment of stacked icons in font awesome

  13. 13

    How to change hover color for iconfont icons?

  14. 14

    How to style icon color, size, and shadow of Font Awesome Icons

  15. 15

    How to change color of font icons in android

  16. 16

    Bootstrap 3: Can the Glyphicons be stacked like Font Awesome's icons?

  17. 17

    font awesome hover color margin turns black

  18. 18

    How to change font-awesome icon color when it is active

  19. 19

    How to change font-awesome icon color when it is active

  20. 20

    How to offset overlapped Font Awesome icons?

  21. 21

    How to center Font Awesome icons horizontally?

  22. 22

    How to debug Font-Awesome icons?

  23. 23

    How solve flickering Font Awesome Icons?

  24. 24

    How to create icons like font awesome

  25. 25

    How to get Png files of Font awesome icons?

  26. 26

    How to make font awesome icons large?

  27. 27

    Align Font Awesome icons (fa-2x) with stacked icons (fa-stack)

  28. 28

    How to show font awesome icon on hover

  29. 29

    How to show font awesome icon on hover

HotTag

Archive