Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #251629

    Hello everybody,
    I would like to use the animation of icons also for buttons. What is the way to do it?

    Thanks for your answers in advance,
    Markus

    #251844

    Hi Blankito!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    body div .avia-button:hover {
    -webkit-animation: sonarEffect 1s ease-out;
    -moz-animation: sonarEffect 1s ease-out;
    animation: sonarEffect 1s ease-out;
    }

    Best regards,
    Yigit

    #251851

    Hi Yigit,
    thank you very much. It works fine. But it wasn’t the animation I meant. For example if you make an Icon list. One Icon appears at a time and after another. I would like to have that animation for my buttons. So when I scroll the button appears on sight!

    Best regards,

    Blankito

    #251879

    Hi Yigit,

    I follow “Please add following code to Quick CSS in Enfold theme options under Styling tab” but after?

    What should I put in the “Optional TooltipAdd a tooltip for this Icon. The tooltip will appear on mouse over”

    THX

    #252047

    Hey!

    Thank you for using the theme!

    Please add this on Quick CSS or custom.css:

    .avia-button {
    opacity: 0.1;
    -moz-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    }
    
    .avia-button {
    -webkit-animation: avia_appear 1s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -moz-animation: avia_appear 1s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
    animation: avia_appear 1s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
    opacity: 1;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    }

    Best regards,
    Ismael

    #316126
    This reply has been marked as private.
    #316513

    Hey!

    Have you tried your buttons on a colored background ( not white )?

    Best regards,
    Yigit

    #316619

    Does this code go in the quick css area? They are grey buttons attached is a preview.

    Here is the link for the preview

    http://hoist-crane.com/wp-content/uploads/2014/09/Untitled-2.jpg

    #317265

    Hi!

    They are not buttons, you’re using an icon shortcode. They should have this animation by default. Please create a new thread if you’re having any issues with the icon element. I’ll close this thread.

    Best regards,
    Ismael

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Use Icon Animation for Buttons’ is closed to new replies.