0

我正在使用 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
4

1 回答 1

2

一个原因可能是你没有提到你的高度.main,我相信它是div0 ,所以它需要 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';

    }

演示

于 2013-09-27T19:46:30.880 回答