2013-07-15 50 views
0

海兰,jQuery的水平和垂直滑块

我在寻找的水平和垂直jQuery的滑块,我无法找到任何:( 我想有例如4个水平滑动和第二滑动将有。另一个纵一

有谁知道这样的滑块

在此先感谢

+0

[水平滑块(http://jqueryui.com/slider/)和[垂直滑块(http://jqueryui.com/slider/#range-vertical) ,只是把两者结合起来 – Dom

回答

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" 
     }); 
    }); 
    });