我使用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 »</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>
不知道如何修复。如果有任何帮助,我将不胜感激。
因此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