Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #945693

    Does Enfold have this capability? See the mouse over and the flip of the photo to see text…

    Please let us know.

    #946452

    Hey vinayb,

    By default enfold does not support this feature. We can help you with the custom CSS required but without testing, I cannot guarantee that this effect can be achieved. This might take a while tho. Let us know if that is ok with you.

    Best regards,
    Vinay

    #946455

    Yes please. If you can suggest a custom CSS for this, it will be great. I will look forward for the code.

    #946579

    Hi,

    I will work on this issue and get back to you with the result. Meanwhile please await my reply :)

    Best regards,
    Vinay

    • This reply was modified 6 years, 7 months ago by Vinay.
    #947083

    Thanks Vinay. I am looking forward for your reply with a solution. thanks a ton :)

    #947122

    You can use SiteOrigin Widgets by CodeLights plugin.

    #947130

    thanks a ton :)

    #947332

    Hi,

    Ok here is what I managed to do.

    Add the below masonry shortcode and select the portfolio or blog posts to display.

    Note: masonry has a custom CSS class “av-masonry-flip”.

    [av_masonry_entries link='portfolio_entries,20,22,23' wc_prod_visible='' prod_order_by='' prod_order='' sort='yes-tax' items='9' columns='3' paginate='load_more' query_orderby='date' query_order='DESC' size='fixed' orientation='av-orientation-square' gap='large' overlay_fx='active' id='av-masonry-flip' caption_elements='title excerpt' caption_styling='overlay' caption_display='always' color='' custom_bg='' av-medium-columns='' av-small-columns='' av-mini-columns='' av_uid='av-jggf0l6e']
    

    Then add the below CSS

    
    /* Masonry flip */
    .av-masonry-flip .av-masonry-entry {
      transform-style: preserve-3d;
      transition: all .85s ease-in-out;
      
    }
    .av-masonry-flip .av-masonry-entry:hover {
      transform: rotateY(180deg);
    }
    .av-masonry-flip .av-masonry-entry .av-masonry-outerimage-container {
      backface-visibility: hidden;
    }
    .av-masonry-flip .av-masonry-entry .av-inner-masonry-content {
      z-index: -1;
    }
    
    
    .av-masonry-flip .av-masonry-entry:hover .av-inner-masonry-content {
        z-index: 1;
        transform: rotateY(180deg);
        backface-visibility: visible;
        animation: .85s flipIn!important;
    }
    
    
    @keyframes flipIn {
     0% {  
        opacity: 0;
      }
      49% {  
        opacity: 0;
      }
      50% {
        opacity: 1;
      }
    }
    

    You can see a working example here http://graphitivity.com/enfold/docs/_test/

    This is the best we can do for you if you need an effect that’s better than this we recommend using a 3rd party plugin that offers this type of animation.

    Best regards,
    Vinay

    #1045742

    Vinay, your CSS works perfectly, thank you!
    But I still can’t achive this effect: https://www.templatemonster.com/demo/62269.html — like a 3-D effect, when the corners of the image are visible.
    Would you be so kind to help me with that? Or maybe suggest some plugin that will work?

    #1046741

    Hi,

    It is not clear what exactly you are referring to. The masonry grid images in the example link flip around on mouse hover. Please feel free to edit the values in the above code to achieve the desired effect.

    Best regards,
    Vinay

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