Tagged: ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #292680

    On the large stand alone icons, how do you change the color of the hover effect that circles around it? So, when I hover my mouse over the icon there is a white circle that animates, I would like that to be blue.

    Here is an example page: http://dev.questcommunity.com/pastorpete/

    The icons are being used at the bottom.

    Thanks!

    Nate

    #292777

    Hey ThomasWalkerDesign!

    Unfortunately that isn’t an effect that is easily changed. You would need to change all of the color values used in this keyframe css3 code to the colors you want to then create the color “sonar”:

    
    /*sonar effect*/
    @-webkit-keyframes sonarEffect {
    	0% {opacity: 0.3;}
    	40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255,255,255,0.5);}
    	100% {box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255,255,255,0.5);-webkit-transform: scale(1.5);opacity: 0;}
    }
    @-moz-keyframes sonarEffect {
    	0% {opacity: 0.3;}
    	40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255,255,255,0.5);}
    	100% {box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255,255,255,0.5);-moz-transform: scale(1.5);opacity: 0;}
    }
    @keyframes sonarEffect {
    	0% {opacity: 0.3;}
    	40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255,255,255,0.5);}
    	100% {box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255,255,255,0.5);transform: scale(1.5);opacity: 0;}
    }
    

    Regards,
    Devin

    #293478

    That worked great! Thanks for the help. I just added that to the child theme CSS.

    Nate

    #293494

    Glad we could help. Let us know if you have any other questions or issues.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Stand Alone Icons Hover Effects Problem’ is closed to new replies.