[Support request] How to add zoom effect to images background in container block

Home Forums Support [Support request] How to add zoom effect to images background in container block

Home Forums Support How to add zoom effect to images background in container block

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1542109
    Sara Genone

    Hi all
    in this page https://cospes.socialmela.it/ you can see six boxes with text and a background image.
    Is it possibile add the zoom hover effetct on the image background ?
    At the moment I set only the first box on left-top with background image, to test this solution
    Thank you in advance for help
    sara
    P.S. the site library is “Health”

    #1542154
    David
    Staff
    Customer Support

    Hi there,

    this will be a feature of the future GB Pro plugin, for the free version add this CSS:

    .gb-zoom .gb-grid-column > .gb-container:before {
        transform: scale(1);
        transition: transform 0.3s ease-in-out;
    }
    .gb-zoom .gb-grid-column:hover > .gb-container:before {
        transform: scale(1.2);
        transition: transform 0.3s ease-in-out;
    }

    Then select the Grid Container ( thats the outer block containing all your grid items) and give it a CSS Class of gb-zoom

    #1542194
    Sara Genone

    Perfect ๐Ÿ™‚
    Thank you
    sara

    #1542272
    David
    Staff
    Customer Support

    You’re welcome ๐Ÿ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.