Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1316423

    Is there a way to transform the transition of the post slider (fadding), by a classic slider as we see everywhere now, like a classic carousel?

    I saw that there was a request for this in 2017 on the Enfold forum which replied that it was not possible. Is there a solution in 2021?

    Thanks a lot

    Bertrand

    #1316815

    Hey Bertrand,
    Thank you for your patience, as I imagine your question you would like a post slider to have an animation of sliding from one side to the next when showing the next posts, I imagine this is the element you mean
    2021-08-15_003.jpg
    So as it is not this element’s animation and function is in javascript and to have a robust carousel experience it would need to be rewriten, but as an example css could be used for a basic carousel:

    #top .slide-entry-wrap.active-slide {
    animation: moveFirst 2s linear .2s;
      animation-iteration-count: 1;
    }
    @-webkit-keyframes moveFirst {
      from {
        left: 100%;
      }
      to {
        left: 0%;
      }
    }

    the problem with this is the visibility and opacity is controlled by javascript so with this css there is a flash of the element on page load, so you would really need to override the whole function with javascript, if you would like to try this you could try this article. But considering there are so many plugins that would do this it doesn’t seem like a good use of time to try to write your own.
    I recommend using a plugin that has a shortcode that you can place on the page to show it.

    Best regards,
    Mike

    #1316880

    Thank you Mike for your response. It’s a shame that Enfold doesn’t offer this option for the “Post Slider”. Maybe it will come?

    Maybe you have a plugin to recommend me to perform this action.

    Thanks in advance and have a great week.

    Bertrand

    #1316936

    Hi,
    Sorry, I have not investigated any such plugins but a quick search on WordPress gives these results for: post carousel try seeing if any of these match your needs. I would recommend not using any that require an additional frontend builder to be installed, typically this leads to conflicts.
    I hope you also have a great week and 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 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Post slider question?’ is closed to new replies.