Tagged: ,

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #292619

    I’d like to remove the portfolio animation – I’d like the images to just be static on the page.

    http://support.curlyhost.com/

    I added this code:

    .avia_desktop.avia_transform3d .av-masonry-entry {
    -webkit-perspective: none;
    -moz-perspective: none;
    perspective: none;
    }

    That code made the animation change from coming in on the left to moving up from the bottom – and I’d like to just be static on the page.

    #292648

    Hey Andrea!

    Try:

    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry{
    animation: none !important;
    -moz-animation: none !important;
    -webkit-animation: none !important;
    }

    Cheers!
    Josue

    #292661

    This gets rid of the animation, which is great, but the thumbnails still don’t load until you scroll over that section. It would be great to have them preloaded.

    #292671

    Hi!

    Modify your previous code:

    .avia_desktop.avia_transform3d .av-masonry-entry {
    -webkit-perspective: none;
    -moz-perspective: none;
    perspective: none;
    opacity: 1 !important;
    }

    Best regards,
    Josue

    #292682

    Hmmm – they load differently, but they still don’t start loading until you scroll over that portion of the site.

    #292687

    Try with this instead:

    .avia_desktop.avia_transform3d .av-masonry-entry {
    -webkit-perspective: none;
    -moz-perspective: none;
    perspective: none;
    opacity: 1 !important;
    visibility: visible !important;
    }

    Regards,
    Josue

    #292690

    Yea!!!! Works GREAT! Thank you soooo much!

    #292699

    You are welcome, always glad to help :)

    Regards,
    Josue

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Remove Portfolio Animation’ is closed to new replies.