1

我正在使用 Reveal 显示更多信息,其中有一个使用 Slick 的轮播。Reveal 模式中的内容是通过 AJAX 拉入的。

我看到的问题是,当 Reveal 打开时,轮播加载时没有第一张图片,移动到第二张图片(加载有延迟),然后正常工作。这是一个简短的视频作为示例:http ://cl.ly/323s1T1x3I21

我不确定如何让图像加载得更快。

我的代码如下所示...

页面代码:

<div class="row">
<div class="large-16 columns right">
    <h4>...</h4>

    <p>... <a href="http://url/to/data" data-reveal-id="modal-vineyard" data-reveal-ajax="true" class="learn-more">Learn More&#160;&raquo;</a></p>
</div>

<div class="large-8 columns left">            
    ...
</div>

被拉入的页面代码:

<div class="inner-carousel">
    <div><img src="blah..."></div>
    <div><img src="blah..."></div>
</div>

<!-- not including this results in slick not working at all -->
<script>
  $(document).ready(function() {
    $('.inner-carousel').slick({
      autoplay: true,
      autoplaySpeed: 4000,
      arrows: false,
      centerMode: true,
      dots: true,
      fade: true,
      speed: 1000,
      swipeToSlide: true
    });
  }); // end ready
</script>

不知道如何修复。将不胜感激任何帮助。

4

1 回答 1

0

所以JS不得不改成如下:

$("#modal-vineyard").on("opened", function() {
        // $(".inner-carousel").slick("setPosition", 0);
        $('.inner-carousel').slick({
          setPosition: 0,
          autoplay: true,
          autoplaySpeed: 4000,
          arrows: false,
          centerMode: true,
          dots: true,
          fade: true,
          speed: 1000,
          swipeToSlide: true
        });
    });

更多信息在这里: http: //foundation.zurb.com/forum/posts/23183

于 2015-03-10T22:36:41.960 回答