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


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


HTML DOM Style objectFit 属性返回并修改 HTML 文档中的图像或视频元素应如何调整大小以适应其容器元素。

用法

以下是语法 -

1. 返回 objectFit

object.objectFit

2.修改objectFit

object.objectFit = “value”

这里,value 可以是 -

解释
initial它将此属性值设置为其默认值。
inherit它从其父元素继承此属性值。
none其中内容没有调整大小。
fill在其中,内容的大小可以填充元素的内容框,如有必要,对象将被拉伸或压扁以适合内容框。
contain在其中,内容被缩放以保持其纵横比,同时适合 HTML 文档中元素的内容框。
cover在其中调整内容大小或剪裁以保持其纵横比,同时将元素的整个内容框放入 HTML 文档中。
scale-down在其中,内容被调整大小。

让我们看一个 HTML DOM 样式 objectFit 属性的例子 -

示例

<!DOCTYPE html>
<html>
<style>
   body {
      color:#000;
      height:100vh;
      background-color:#8BC6EC;
      background-image:linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
      text-align:center;
   }
   .btn {
      background:#db133a;
      border:none;
      height:2rem;
      border-radius:2px;
      width:40%;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
      margin:1rem auto;
   }
   .img-class {
      width:200px;
      height:250px;
   }
</style>
<body>
<h1 style="text-align:center">DOM Style objectFit Property Demo</h1>
<img alt="Learn Time Series" src="https://www.tutorialspoint.com/time_series/images/time-series-mini-logo.jpg" class="img-class" width='300' height='200'>
<button class="btn" onclick="set()">Set objectFit</button>
<script>
   function set() {
      document.querySelector('.img-class').style.objectFit = "contain";
   }
</script>
</body>
</html>

输出

点击 ”Set objectFit”按钮在图像元素上设置对象适合属性 -

相关用法


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