Note that there are some explanatory texts on larger screens.

plurals
  1. POjQuery fadeIn jCarouselLite div causes slider not to advance
    primarykey
    data
    text
    <p>I have a working jCarouselLite slider in a CakePHP app that needs one last tweak. The client would like for the slider to not load for about five seconds so that the user can see the background image behind it. </p> <p>So far I have it set up like this: </p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function() { $('#carouselDelay').delay(5000).fadeIn(400); }); &lt;/script&gt; &lt;?php echo $this-&gt;Html-&gt;script(array('jquery.easing.1.3','jcarousellite_1.0.1','jquery.mousewheel.min'), array('inline' =&gt; false, 'safe' =&gt; false)); ?&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { $('#carousel').jCarouselLite({ btnNext: ".next", btnPrev: ".prev", circular: true, auto: 5000, beforeStart: function(a) { jQuery(a).parent().fadeTo(300, 0); }, afterEnd: function(a) { jQuery(a).parent().fadeTo(300, 1); }, speed: 0, visible: 1, btnGo: [".carouselThumb .1", ".carouselThumb .2", ".carouselThumb .3", ".carouselThumb .4", ".carouselThumb .5", ".carouselThumb .6", ".carouselThumb .7", ".carouselThumb .8", ".carouselThumb .9"] }); }); &lt;/script&gt; &lt;div id="carouselDisplay"&gt; &lt;div id="carousel"&gt; &lt;!-- Carousel content here --&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>The problem is that when I have the fade effect enabled on <code>#carouselDisplay</code>, the slider itself does not advance to the next slide. </p> <p>I have tried calling jQuery noConflict, but that didn't help. I also tried moving the delay and fade affect to a $(window).load event, but the result was the same. </p> <p>Can you help me figure out why the delay is conflicting with the slider advancement? I haven't found any other reports of this.</p> <p>Thanks!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload