Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author cactus.cloud

    (@bortpress)

    I may be able to issue an update for that soon.

    In the mean time you can specify the hover animation speed (and style if you want) through CSS.

    Use the CSS below and modify it to specify the fade in speed you want

    img.masonry_brick_img:hover{
    -webkit-transition: all 0.5s ease-in-out !important;
    -moz-transition: all 0.5s ease-in-out !important;
    -o-transition: all 0.5s ease-in-out !important;
    transition: all 0.5s ease-in-out !important;
    }

    If you want to specify the fade out speed use this CSS. Of course you can use both if you want.

    img.masonry_brick_img:hover{
    -webkit-transition: all 0.5s ease-in-out !important;
    -moz-transition: all 0.5s ease-in-out !important;
    -o-transition: all 0.5s ease-in-out !important;
    transition: all 0.5s ease-in-out !important;
    }

    The default animation is set to 0.5s. You can set a number of seconds (e.g. 0.5s) or a number of milliseconds (500ms).

    Just set the amount of your choosing and apply the CSS to the page you want or to your site. I’ve been using Royal Custom CSS on the plugins site. It allows you to specify CSS for individual posts and pages.

    Anyway, I hope that helps. And I’m sorry for boring you if you already know CSS.

    Get in touch if you have any probs.

    Thread Starter Jack Graham

    (@jack-graham)

    Perfect, thanks!

    And you weren’t that boring ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Animation for hover in gallery.’ is closed to new replies.