我似乎无法调整轨道滑块的宽度
根据文档,必须在#featured id中更改宽度和高度。 当我更改它时,图像的大小会改变,而不是完整的滑块本身。
答案 0 :(得分:4)
适合我:
/* Change CSS */
div.orbit-wrapper {
width: 470px !important;
height: 255px !important;
position: relative;
}
/* Or Change JavaScript */
$(window).load(function() {
$('#featured').orbit({
bullets: true
});
$('.orbit-wrapper').css({ width: 470, height: 225 });
});