答案 0 :(得分:0)
请在JqueryCarouFredsel-5.5.0.js页面中更新您的代码。
请在此处找到代码http://jsfiddle.net/xnnN8/1/
在JqueryCarouFredsel-5.5.0.js中替换此代码
答案 1 :(得分:0)
请指定图片的尺寸
使用HTML属性:
<img src="image1.jpg" width="140" height="140" />
通过CSS:
#foo img {
width : 140px;
height : 140px;
}
通过插件配置:
$("#foo").carouFredSel({
items : {
width : 140,
height : 140
}
});