我通过覆盖CSS为我的滑块使用自定义背景:
.ui-widget-content {background: transparent url(../img/bg.png) no-repeat;}
滑块的行为受以下因素控制:
$(document).ready(function() {
$(".myslider5").slider({
animate: "true",
step: 1,
min: -1950,
max: 1950,
value: 0,
slide: function(event, ui) {
// magic happens here
}
});
$(".myslider3").slider({
animate: "true",
step: 1,
min: -1350,
max: 1350,
value: 0,
slide: function(event, ui) {
// magic happens here
}
});
因此,myslider5
和myslider3
是两个类。但他们的背景图片需要不同。我该怎么做呢?
答案 0 :(得分:2)
答案 1 :(得分:0)
我明白了。出于某种原因,aSeptik的建议没有奏效。它必须在CSS部分调整,而不是在JS中。
.myslider5.ui-widget-content {background: transparent url(../img/slider5.png);}
.myslider3.ui-widget-content {background: transparent url(../img/slider3.png);}