我正在使用jquery滑块,我想根据滑块的移动方式移动我的图像,但由于某种原因它不适用于我 这是代码
.main{
background: transparent url(/img/ads/bootsImg.jpg) no-repeat 20px 30px;;
width: 300px;
background-size: 322px;
font-family: 'Futura-Book';
}
<div id="background-image-horizontal"></div>
//滑块
$('#background-image-horizontal').slider({
max: 50,
min: 10,
value: 14,
slide: function(e,ui) {
console.log("transparent url(/img/ads/bootsImg.jpg) no-repeat "+ui.value+"px 1px");
$('.main').css("background","transparent url(/img/ads/bootsImg.jpg) no-repeat "+ui.value+"px 1px");
}
});
在我的控制台中,当我移动滑块时,我看到这种情况发生了变化,但在我的屏幕上,图像无法移动
transparent url(/img/ads/bootsImg.jpg) no-repeat 28px 1px ?img=bootsImg.jpg&w=300&h=300:330
transparent url(/img/ads/bootsImg.jpg) no-repeat 29px 1px ?img=bootsImg.jpg&w=300&h=300:330
transparent url(/img/ads/bootsImg.jpg) no-repeat 30px 1px ?img=bootsImg.jpg&w=300&h=300:330
transparent url(/img/ads/bootsImg.jpg) no-repeat 31px 1px ?img=bootsImg.jpg&w=300&h=300:330
transparent url(/img/ads/bootsImg.jpg) no-repeat 32px 1px ?img=bootsImg.jpg&w=300&h=300:330
transparent url(/img/ads/bootsImg.jpg) no-repeat 33px 1px ?img=bootsImg.jpg&w=300&h=300:330
答案 0 :(得分:2)
有一个原因可能是你的.main
没有提到身高,我相信它是div
,所以它需要0高度。尝试设置一些height
。
.main{
background: transparent url(/img/ads/bootsImg.jpg) no-repeat 20px 30px;;
width: 300px;
height:200px; /*Set some height*/
background-size: 322px;
font-family: 'Futura-Book';
}
<强> Demo 强>