我在这里使用此代码,以便在滑块中加载一些图像:
<script src="scripts/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="scripts/jquery.cycle.all.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#myslides').cycle({
slideResize: true,
containerResize: false,
width: '1138px',
height: '532px',
});
});
</script>
我的问题是,当我刷新时,只有第一张图像应该出现,但是其他图像只是显示为小矩形,我需要修改它,以便图像开始滑动只有当它们全部装满时才会出现。
请帮助
答案 0 :(得分:0)
请更正您的JavaScript并尝试。任何json的最后一个属性都不应该后跟逗号(,)。请删除高度属性值后的逗号&amp;试试它是否有效。
<script type="text/javascript">
function pageLoad(){
$('#myslides').cycle({
slideResize: 1,
containerResize: 1,
fit: 1,
width: '1138px',
height: '532px'
});
}
</script>
我认为您已将选项设置为true或false,但在http://jquery.malsup.com/cycle/options.html选项设置为1或0.请参阅jQuery Cycle Plugin - Option Reference以获取更多详细信息。