我在http://althedge.xyz设置了即时搜索功能。我想使用图像作为搜索结果的背景,但我不知道如何操作。有没有办法用这种类型的代码执行此操作?如果是这样,请告诉我如何。感谢
//set up the list
$(this.list)
.css({
listStyleType: "none",
display: "none",
boxShadow: "1px 1px 5px #888888",
borderRadius: "10px",
background: "#XXXXXX",
border: "1px solid blue",
margin: "0",
padding: "0"
})
;
答案 0 :(得分:0)
不太确定您要在此处执行的操作,但要将背景图像应用于特定的id,class或html元素标记,您可以在CSS中执行此操作:
$sourcePath.Write($objForm.SelectedPath)
答案 1 :(得分:0)
.back_bg {
background: url('../img/images.jpg') no-repeat center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
overflow-x: hidden;
}