jQuery水平和垂直滑块

时间:2013-07-15 23:23:43

标签: jquery slider

HY,

我正在搜索水平和垂直jQuery滑块,我找不到任何东西:( 我希望水平地有4个幻灯片,第二个幻灯片有另一个垂直幻灯片。

有人知道这样的滑块吗?

提前致谢!

1 个答案:

答案 0 :(得分: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"
      });
    });
  });