Viewing 12 replies - 1 through 12 (of 12 total)
  • Thread Starter Lindsay Heydon

    (@lindsay-heydon)

    PS just noticed also that if I refresh in the back end when in Edit Slideshow the Slider Preview also jumps…

    Thread Starter Lindsay Heydon

    (@lindsay-heydon)

    Another follow up:

    Added below to the CSS (i.e. added exact dimensions of image) and now works perfectly – except of course it’s not responsive.

    .cycloneslider-slides {
    height: 300px;
    width: 1140px;
    }

    Thread Starter Lindsay Heydon

    (@lindsay-heydon)

    OK, what I have deduced so far…

    It’s the effect of initializing the slider at the window.onload event. Because image dimensions are not realised until the window.onload event, there is a discrepancy between the initial and realised height of the slider.

    I can define a height in CSS to avoid this issue, but the slider will no longer be responsive.

    I note that the support isn’t very active here, but is there any likelihood of a ‘fix’ or workaround of any kind?

    Thread Starter Lindsay Heydon

    (@lindsay-heydon)

    OK… to stop the jump (but not the flash). i.e to stop the rest of the page jumping up because the space the slider will occupy is drawn prior to the slider loading… used the CSS below on the slider’s container.

    .slider-container {
    height: 0;
    padding-bottom: 26%;
    width: 100%;
    }

    I have made a note here hoping it might helps someone else. If anyone has any ideas on the flash, that’d be great.

    Please help me with the same problem.
    Also the solution above works only for non responsive sliders.

    Is it reinitializing or may be that bug is fixed for paid version?

    saw your web site, and…
    we both have a tripadvisor widget.

    So the page without tripadvisor’s script no flashing-jumping.
    Also it is better to place that script to the header – it helps.

    Now the slider sometimes flickers. That flickering is much more better than flashing/jumping but why it makes so? Anyway that is a really problem.

    Anyone please help.

    A Simple Solution

    <style type=”text/css”>
    .js .slider {display: none;}
    </style>
    <script type=”text/javascript” src=”/scripts/jquery.js”></script>
    <script type=”text/javascript”>
    jQuery(‘html’).addClass(‘js’);
    jQuery(document).ready(function() {
    jQuery(‘.slider’).fadeIn();
    });
    </script>

    http://www.learningjquery.com/2008/10/1-way-to-avoid-the-flash-of-unstyled-content/

    Thread Starter Lindsay Heydon

    (@lindsay-heydon)

    Hi demurov, thanks for taking an interest. JFYI some of the code above will work for responsive sites in that it stops the jump but not the flash…

    .slider-container {
    height: 0;
    padding-bottom: 26%;
    width: 100%;
    }

    I tried moving the TA script to the header but it didn’t make any difference at all.

    I put .js .slider {display: none;} in my style sheet and the script in my header… but still no difference. Did I do something wrong there? Many thanks for any help, much appreciated.

    Thread Starter Lindsay Heydon

    (@lindsay-heydon)

    OK, got the above to work by using enqueue and adding to header, it stopped jumping but the slider stopped sliding….

    Forget about tripadvisor, you can just try to remove and try without it.
    But the most important is plugin’s bug.
    Your slider is setting up in the div with class ‘bandb’, so in your case try following code:

    <style type=”text/css”>
    .js .bandb{display: none;}
    .cycle-slideshow .cycle-slide img { display: none }
    .cycle-slideshow .cycle-slide:first-slide img { display: block }
    </style>

    <script type=”text/javascript”>
    jQuery(‘html’).addClass(‘js’);
    jQuery(document).ready(function() {jQuery(‘.bandb’).fadeIn(‘fast’);});
    </script>

    Thread Starter Lindsay Heydon

    (@lindsay-heydon)

    Hi Demurov, thank you so much for your help. I really appreciate it. I tried your suggestion above and variations of but to no avail… still getting the jump. I thought I might buy the pro version of Cyclone Slider 2 but reading the feedback the support is not so good for that either. I bit the bullet and decided to jump ship as would be quicker for me to setup another than try and continue to problem solve this one. In the end I set up with Meta Slider https://wordpress.org/plugins/ml-slider/ – using Responsive Slides and am very happy with it. A bit of fiddling with CSS but highly recommended for anyone with similar issues.

    Many thanks again.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Slider flashing \ jumping on page load’ is closed to new replies.