有一个烦人的错误我无法解决。 我附加一个div并将滑块标记放在
中 $(article_box).append('[MARKUP]');
$('#screenshot-carousel').carouFredSel({
responsive: true,
// scroll: { fx: "crossfade", duration: "1500" },
items: {
width: 580
},
auto: false,
prev : {
button : ".event .prevPhoto",
key : "left"
},
next : {
button : ".event .nextPhoto",
key : "right"
}
});
这里的标记是:
<div class="photo-block" id="'+id+'">
<a href="#"><i class="icon-red icon-in-nav icon-remove"></i></a>
<div class="controls">
<a href="#" class="prevPhoto"> </a>
<p class="slides-counter"><span id="the_num">0</span> из <span id="out_of">0</span></p>
<a href="#" class="nextPhoto"> </a></div>
<ul id="screenshot-carousel" class="fixclear">
<li><a class="prettyPhoto_transparent" href="<?php echo Yii::app()->request->baseUrl; ?>/fileuploader/index.html?iframe=true&height=600"><img src="/images/quotes/addImages600.jpg" alt=""></a></li>
<li id="additional"><a class="prettyPhoto_transparent" href="<?php echo Yii::app()->request->baseUrl; ?>/fileuploader/index.html?iframe=true&height=600"><img src="/images/quotes/addImages600.jpg" alt=""></a></li>
</ul>
</div>
我得到的:代码插入标记,我可以在浏览器代码查看器中看到它(图像在那里,我可以在单独的选项卡中打开它们),但我无法在滑块中看到图像。实际上,滑块不显示幻灯片。我只看到控制按钮。控制台中没有显示错误,因此代码似乎很清楚,但显示幻灯片/图像有什么问题?