Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1358339

    Hey guys,

    How can I get the rollover image effect you see on (1)

    Assigned to the portfolio gallery you see on (2)…

    so that it’s obvious to the users that the images on the portfolio page are clickable.

    Thanks

    #1358398

    Hey Justin,
    Thanks for the links to your site, try this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #av-sc-portfolio-1 .grid-image img:hover {
    animation: slowscalein 1s;
    animation-fill-mode: forwards;
    }
    #av-sc-portfolio-1 .grid-image img {
    animation: slowscaleout 1s;
    }
    @keyframes slowscalein {
      0% {
        transform: scale(1);
        -webkit-transform: scale(1);
      }
      100% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
      }
    }
    @keyframes slowscaleout {
      0% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
      }
      100% {
        transform: scale(1);
        -webkit-transform: scale(1);
      }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1358404

    Thanks @Mike
    Do you get a lot of requests for this?
    I almost feel like the option should be available to Media Galleries.

    #1358408

    Hi,
    I don’t recall the last time this was requested, I didn’t have this in my bag of tricks I just whipped it up :)
    Assuming this helped, shall we close this then?

    Best regards,
    Mike

    #1358413

    It did. Thanks
    Yes.

    #1358415

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Hover FX for Portfolio Gallery’ is closed to new replies.