轨道滑块的宽度

时间:2012-07-28 14:48:50

标签: jquery css slider width orbit

我似乎无法调整轨道滑块的宽度

http://ashwinvasudevan.co.cc

根据文档,必须在#featured id中更改宽度和高度。 当我更改它时,图像的大小会改变,而不是完整的滑块本身。

http://postimage.org/image/c0wzaoq4x/

1 个答案:

答案 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 });
    });