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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。