1
A
回答
4
要設置jQuery滑塊的寬度,只需使用CSS將其包裝爲div和樣式即可。你也可以通過CSS引用子元素來設置它們的風格,但是這必須在jQuery渲染後使用jQuery完成。
例子:
<script type="text/javascript">
$(document).ready(function(){
//render the sliders
$(".oSlider").slider({
value: 12,
min: 8,
max: 24,
step: 1
});
//size each handle according to class
$(".narrow-handle .ui-slider-handle").css("width","10px");
$(".wide-handle .ui-slider-handle").css("width","50px");
});
</script>
<style type="text/css">
/* define a width for the sliders by styling the wrapping div */
.oSliderContainer { width:100px; }
.oSliderContainer2 { width:200px; }
</style>
<div class="oSliderContainer"><div class="oSlider narrow-handle"></div></div>
<div class="oSliderContainer2"><div class="oSlider wide-handle"></div></div>
我希望回答您的問題,祝你好運!
1
你試過Lemmon Slider嗎?
http://jquery.lemmonjuice.com/plugins/slider-variable-widths.php
相關問題
- 1. jQuery可變寬度滑塊
- 2. jQuery查找塊元素的寬度
- 3. 平滑JQuery寬度變化
- 4. 具有固定高度和可變寬度圖像的滑塊
- 5. jQuery的滑塊縮略圖寬度
- 6. JS滑動滑塊:可變寬度圖像
- 7. 改變元素的寬度?
- 8. jQuery的元素寬度
- 9. 滑塊元素不會超過容器寬度的100%
- 10. 清除可變寬度父元素中的子元素的行
- 11. jquery ui滑塊圖像寬度
- 12. Jquery UI更改滑塊手柄寬度?
- 13. jQuery元素寬度類型
- 14. Python:可變寬度的滑動窗口
- 15. 如何製作具有div和可變寬度的滑塊?
- 16. 寬度小於頁寬的離子滑塊離子滑塊盒
- 17. 力空塊元素的寬度
- 18. 流體寬度滑塊
- 19. 滑塊寬度問題
- 20. 滑塊定位寬度
- 21. 任何滑塊寬度
- 22. 寬度軌道滑塊
- 23. jQuery滑塊:克隆和刪除基於滑塊值的元素
- 24. 自定義全寬度滑動滑塊
- 25. HTML滑塊元素?
- 26. 以最小寬度「變爲塊」的流體元素
- 27. WPF:如何在元素寬度發生變化時動畫元素的寬度
- 28. Nivoslider:後來改變滑塊的寬度和高度
- 29. 自定義jQuery UI滑塊的高度和寬度
- 30. 更改jQuery滑塊的寬度和高度