backgroundImage 属性用于设置或返回元素的背景图像。
用法
以下是语法 -
设置 backgroundImage 属性:
object.style.backgroundImage = "url('URL')|none|initial|inherit"
值
上述属性值解释如下 -
Sr.No | 值和描述 |
---|---|
1 | url('URL') 用于指定图像文件位置。 |
2 | none 用于指定不使用背景图像,它是默认值。 |
3 | initial 用于将此属性设置为初始值。 |
4 | inherit 继承父属性值。 |
示例
让我们看一下 backgroundImage 属性的示例 -
<!DOCTYPE html>
<html>
<head>
<style>
#DIV1 {
height:300px;
width:500px;
background-image:url("https://www.tutorialspoint.com/mongodb/images/mongodb-minilogo.jpg");
background-repeat:no-repeat;
background-size:cover;
}
</style>
<script>
function changeBackImage(){
document.getElementById("DIV1").style.backgroundImage="url('https://www.tutorialspoint.com/plsql/images/plsql-mini-logo.jpg')";
document.getElementById("Sample").innerHTML="The background image is now changed to PL/SQL Tutorial";
}
</script>
</head>
<body>
<h2>Learn</h2>
<div id="DIV1"></div>
<p>Change the above div background image by clicking the below button</p>
<button onclick="changeBackImage()">CHANGE IMAGE</button>
<p id="Sample"></p>
</body>
</html>
输出
这将产生以下输出 -
单击更改图像按钮 -
相关用法
- HTML DOM Style backgroundClip属性用法及代码示例
- HTML DOM Style backgroundColor属性用法及代码示例
- HTML DOM Style backgroundPosition属性用法及代码示例
- HTML DOM Style background属性用法及代码示例
- HTML DOM Style backgroundSize属性用法及代码示例
- HTML DOM Style backgroundRepeat属性用法及代码示例
- HTML DOM Style backgroundOrigin属性用法及代码示例
- HTML DOM Style backgroundAttachment属性用法及代码示例
- HTML DOM Style backfaceVisibility属性用法及代码示例
- HTML DOM Style borderBottomWidth属性用法及代码示例
- HTML DOM Style borderCollapse属性用法及代码示例
- HTML DOM Style borderImageOutset属性用法及代码示例
- HTML DOM Style borderImage属性用法及代码示例
- HTML DOM Style borderColor属性用法及代码示例
- HTML DOM Style borderBottomColor属性用法及代码示例
- HTML DOM Style borderBottomStyle属性用法及代码示例
- HTML DOM Style borderImageRepeat属性用法及代码示例
- HTML DOM Style border属性用法及代码示例
- HTML DOM Style borderBottom属性用法及代码示例
- HTML DOM Style borderBottomLeftRadius属性用法及代码示例
注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style backgroundImage Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。