我想知道如何使用
将background
设置为图像
<img src="" alt="sample" width="480" height="500" border="0">
我知道我没有图片名称,因为我从下拉菜单中选择图片。
我的问题是如何集成要显示为background image
的代码。
这就是我需要将它整合到的地方。
.container {
background-color: lightgrey;
width: 500px;
height: 500px;
border: 2px solid;
position: relative;
overflow: auto;
}
答案 0 :(得分:1)
PropertyChanged
属性不适用于background
代码,因为img
标记已经是img
当然要使用图片,所以如果你想要要应用src
,然后使用像background
这样的元素,然后在CSS中应用属性。
如果你想从下拉列表中选择,你可以使用JS
来使用类
div
&#13;
$('select').change(function() {
$('.container').hide();
$('#' + $(this).val()).show();
})
&#13;
body {
margin: 0
}
.container {
width: 500px;
height: 500px;
border: 2px solid;
position: relative;
overflow: auto;
}
.red {
background: red
}
.green {
background: green
}
.blue {
background: blue
}
&#13;