0

嗨,

我正在寻找水平和垂直的 jQuery 滑块,但我找不到任何东西 :( 例如,我希望有 4 张水平幻灯片,而第二张幻灯片将有另一个垂直的。

有人知道这样的滑块吗?

提前致谢!

4

1 回答 1

0

看看那里:http: //jqueryui.com/slider/#multiple-vertical

我希望它有效。

就像是 :

$( ".sliders" ).each(function() {
      // read initial values from markup and remove that
      var value = parseInt( $( this ).text(), 10 );
      $( this ).empty().slider({
        value: value,
        range: "min",
        animate: true,
        orientation: "vertical"
      });
    });
  });
于 2014-01-30T17:22:34.257 回答