我试图在iScroll的javascript中使用背景图片。该脚本似乎在javascript中使用css,并允许我添加背景颜色,但出于某种原因不能添加图像。有没有办法解决这个问题,以便我可以使用图像?
这是我试图显示背景图片的代码部分(images / scrollbar_bg.png)
if (that.options.scrollbarClass)
bar.className = that.options.scrollbarClass + dir.toUpperCase();
else bar.style.cssText = 'position:absolute;z-index:100;
absolute; left: 0px; margin-left: 14px; background-url: images/scrollbar_bg.png; '
+ (dir == 'h' ? 'height:7px; bottom:20px; left:2px; right:
' + (that.vScrollbar ? '7' : '2') + 'px' : 'width:7px;bottom:'
+ (that.hScrollbar ? '7' : '2') +
'px;top:14px;right:1px -border-radius:3px;border-radius:3px');
由于
答案 0 :(得分:1)
你从哪里得到background-url
?正确的语法是:
background-image: url(images/scrollbar_bg.png);
此外,您在absolute;
和z-index
属性中间有一个随机left
。