3

私はこのjQuerySliderプラグインを使用しています。設定のような幅を設定する必要があります。このプラグインでは、このプラグインで完全にスタックしました。この問題を解決するのを手伝ってください。

4

2 に答える 2

2

スライダーは親ノードの幅を取ります。したがって、入力を希望の幅のコンテナに配置します

<div class="span8">
     <input id="SliderSingle" type="slider" name="price" value="20" />
</div>

CSS

.span8 {
      width:500px;
}

編集ソースを カスタマイズしたい場合は、154行目に追加する必要があります

settings: {
  from: 1,
  to: 10,
  step: 1,
  smooth: true,
  limits: true,
  round: 0,
  format: { format: "#,##0.##" },
  value: "5;7",
  width: '100%', // add this line
  dimension: ""
},

237行目

this.domNode.css('width', this.OPTIONS.settings.width);
this.inputNode.after( this.domNode );

(未テスト)

于 2013-01-03T10:24:46.047 に答える
0

You should set the css of jslider class to the wanted width, that's what I did when i used the same plugin.

于 2013-01-03T10:27:32.500 に答える