当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Style backgroundOrigin属性用法及代码示例


background-origin 属性用于设置或获取背景原点,即它的相对位置。它可以与四个盒模型区域中的任何一个相关。

用法

以下是语法 -

设置 backgroundOrigin 属性 -

object.style.backgroundOrigin = "padding-box|border-box|content-box|initial|inherit"

上述属性值解释如下 -

Sr.No值和描述
1padding-box
用于使背景图像相对于填充框定位。
它是默认值。
默认值。背景图像相对于填充框定位。
2border-box
用于使背景图像相对于边框框定位。
3content-box
使背景图像相对于内容框定位。
4initial
用于将此属性设置为初始值。
5inherit
继承父属性值。

示例

让我们看一个 backgroundOrigin 属性的例子 -

<!DOCTYPE html>
<html>
<head>
<style>
   #DIV1 {
      margin:20px;
      box-shadow:0 0 5px black;
      padding:30px;
      background:url("https://www.tutorialspoint.com/power_bi/images/power-bi-minilogo.jpg");
      background-origin:content-box;
      background-repeat:no-repeat;
      background-size:cover;
      font-size:24px;
   }
   div>p {
      box-shadow:0 0 5px darkgrey;
   }
</style>
<script>
   function changeBackOrigin(){
      document.getElementById("DIV1").style.backgroundOrigin="padding-box";
      document.getElementById("Sample").innerHTML="The background origin is now set to to padding-box";
   }
</script>
</head>
<body>
<h2>PowerBI Tutorial</h2>
<div id="DIV1">
<p>Learn PowerBI...Learn PowerBI...Learn PowerBI...Learn PowerBI...Learn
PowerBI...Learn PowerBI...Learn PowerBI...Learn PowerBI...Learn PowerBI...Learn
PowerBI...Learn PowerBI...Learn PowerBI... Learn PowerBI...Learn PowerBI...</p>
</div>
<p>Change the above div background origin by clicking the below button</p>
<button onclick="changeBackOrigin()">CHANGE ORIGIN</button>
<p id="Sample"></p>
</body>
</html>

输出

这将产生以下输出 -

单击更改原点按钮 -

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style backgroundOrigin Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。