gpt4 book ai didi

html - 将图像设置为背景

转载 作者:太空宇宙 更新时间:2023-11-04 10:05:22 25 4
gpt4 key购买 nike

我想知道如何使用

将我的 背景设置为图像
<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;
}

最佳答案

background 属性不适用于 img 标签,因为 img 标签已经是 src 到当然使用图像,所以如果你想应用 background,然后使用一些元素,如 div,然后在 CSS 中应用属性。

如果你想从下拉列表中选择它,你可以使用 JS 使用类

$('select').change(function() {
$('.container').hide();
$('#' + $(this).val()).show();
})
body {
margin: 0
}
.container {
width: 500px;
height: 500px;
border: 2px solid;
position: relative;
overflow: auto;
}
.red {
background: red
}
.green {
background: green
}
.blue {
background: blue
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<select>
<option value="opt1">red</option>
<option value="opt2">green</option>
<option value="opt3">blue</option>
</select>
<div id="opt1" class="container red"></div>
<div id="opt2" class="container green"></div>
<div id="opt3" class="container blue"></div>

关于html - 将图像设置为背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38044517/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com