我似乎无法调整轨道滑块的宽度
根据文档,必须在#featured id 中更改宽度和高度。当我改变它时,图像的大小会改变,而不是整个滑块本身。
我似乎无法调整轨道滑块的宽度
根据文档,必须在#featured id 中更改宽度和高度。当我改变它时,图像的大小会改变,而不是整个滑块本身。
为我工作:
/* 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 });
});