Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #191827

    Hello i would like to change that hoover effect on the images of the portfolio grid. How do i get the overlay more transparent and delete the icon that ist displayed on mooseover.

    Is it possible to zoom in that image on mouseover. With a animation that zooms in, not just showing another more zoomed image.

    Cheers,
    Markus

    #192416

    Hey Markus!

    Add this code to the Quick CSS:

    .grid-image.avia-hover-fx img{
        -webkit-transition: all linear 0.2s;
        -moz-transition: all linear 0.2s;
        transition: all linear 0.2s;
    }
    .grid-image.avia-hover-fx{
        overflow: hidden !important;
    }
    .grid-image.avia-hover-fx:hover img{
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        transform: scale(1.5);
    }
    .image-overlay.overlay-type-extern {
        display: none !important;
    }

    Cheers!
    Josue

    #192705

    Hi Josue,
    this works great. :-)
    Thank you.

    Just in Case, how do i get the normal “fading” a little bit less?

    Cheers,
    Markus

    #192716

    Hi!

    In js/avia.js, line 452.

    Regards,
    Josue

    #192900

    Hi Josue,
    thanx.

    Cheers,
    Markus

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Portfolio Grid Hoover Effect’ is closed to new replies.