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


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


HTML DOM borderImageRepeat 属性用于定义图像切片在边框图像中的重复方式。这将设置或获取 borderImage 是否应该被舍入、重复或拉伸。

用法

以下是语法 -

设置 borderImageRepeat 属性。

object.style.borderImageRepeat = "stretch|repeat|round|initial|inherit"

属性值解释如下 -

Sr.No值和描述
1Stretch
这使得图像被拉伸以填充该区域。这是默认值。
2Repeat
这使得图像重复填充该区域。
3Round
图像通常会重复以填充该区域,如果它没有用整数次填充该区域,则会重新缩放。
4Space
与圆形相同,但如果图像没有重复整数次,则图块周围的空间是分布的。
5initial
用于将此属性设置为初始值。
6inherit
继承父属性值

示例

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

<!DOCTYPE html>
<html>
<head>
<style>
   #b1 {
      border:30px solid transparent;
      padding:5px;
      border-image-source:
      url("https://www.tutorialspoint.com/data_structures_algorithms/images/data-structurealgorithm.jpg");
      border-image-repeat:repeat;
      border-image-slice:30;
   }
</style>
<script>
   function changeBorderRepeat(){
      document.getElementById("b1").style.borderImageRepeat="stretch";
      document.getElementById("Sample").innerHTML="The border image will now be
      stretched";
   }
</script>
</head>
<body>
<h2>Demo Heading</h2>
<p id="b1">This is some random text inside the paragraph. Here is another line in this paragraph</p>
<p>Change the above div border image repeat property by clicking the below button</p>
<button onclick="changeBorderRepeat()">Change Border Repeat</button>
<p id="Sample"></p>
</body>
</html>

输出

这将产生以下输出 -

单击 COLLAPSE BORDER 按钮 -

相关用法


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