Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1025512

    On my site https://hi-flyfoto.de/ I use the first slide to have a drone fly in. The drone then stays there permanently,
    while the other slides appear randomly. However, sooner or later the first slide, blank but for the drone, appears again.
    Can this be prevented somehow?
    Thank you for your help
    Michael

    #1025987

    Hey mleonhard,

    I did not see the random slide you were talking about, which browsers is it happening in?

    Best regards,
    Victoria

    #1026018

    Hi Victoria,
    I mean the order of the slides is random, with the exception of the first one, to have the drone flying in.
    This does work, with the small “issue” that the first slide with white background appears again later, and I would like to prevent that

    #1027389

    Hi,

    Can we access the site? Have you tried deleting the white background? Or add the drone in the second slide and set it not to transition out.

    Best regards,
    Ismael

    #1029843

    Hi,
    I have only just seen your reply, because unfortunately the email ended up in spam.
    Not sure what you mean with transition out. The drone layer actually appears in the first slide and without any other image,
    then stays there permanently. When this first slide is played again later, a blank slide is seen.
    I have reduced the time to 500ms, so it is only a minor issue.
    Still, if the first slide could be prevented from appearing again, that would be great.

    Kind regards
    Michael

    #1030224

    Hi,

    Thanks for the update.

    Not sure what you mean with transition out.

    There is an option in the layer’s Transition panel where you can keep the layer on the canvas forever. Go to the layer’s Transitions > Other Settings panel, set the “Keep this layer visible” to “Forever”. By then, maybe you can remove the first slide and move the drone on the second slide.

    Best regards,
    Ismael

    #1030338

    Hi Ismael,
    thanks for your help.
    Actually, I have the first drone layer as “forever”. Starting the slider with a fixed image is an option,
    but I like the idea of a random first image. That is why the first drone slide is blank, quickly followed by an image layer
    and then all images in shuffle mode.
    I guess it is not possible to prevent the first blank slide from re-appearing again later.

    #1031481

    Hi,

    You can actually stop the first slide from re-appearing using the events callback but it will also hide the drone because it’s inside the slide.

    Best regards,
    Ismael

    #1031649

    Hi Ismael,
    ok, thank you for your help.
    I suppose I will resign to the fact that it is either a fixed order of slides,
    or random with the occasional quick blank slide in between

    #1031946

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #1204591
    This reply has been marked as private.
    #1206081

    Hi,

    In the Events Callback panel, look for the slideChangeWillStart event or field. You can set the function to return a specific slide defined by its order in the slider or to stop the slider. Please check the documentation for more info.

    // http://docs.offlajn.com/creative-slider/55-advanced-customization/228-creative-slider-api

    Example:

    function( event, slider ) {
      if(condition) {
         return 3; // skip to slide 3
      }
    }
    

    Best regards,
    Ismael

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