HTML DOM Style objectPosition 属性返回并修改图像或视频元素在 HTML 文档中其自己的内容框中的定位方式。
用法
以下是语法 -
1. 返回 objectPosition
object.objectPosition
2.修改objectPosition
object.objectPosition = “value”
在这里,价值可以是 -
值 | 解释 |
---|---|
Initial | 它将此属性值设置为其默认值。 |
Inherit | 它从其父元素继承此属性值。 |
Position | 它表示图像或视频元素在其内容框中的位置。 |
让我们看一个 HTML DOM 样式 objectPosition 属性的例子 -
示例
<!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;
object-fit:cover;
}
</style>
<body>
<h1 style="text-align:center">DOM Style objectPosition Property Demo</h1>
<img alt="Learn Java Swing" src="https://www.tutorialspoint.com/swing/images/swing-mini-logo.jpg" class="img-class" width='300' height='200'>
<button class="btn" onclick="set()">Set objectPosition</button>
<script>
function set() {
document.querySelector('.img-class').style.objectPosition = "100% 100%";
}
</script>
</body>
</html>
输出
点击 ”Set objectPosition”按钮在图像元素上设置对象位置属性 -
相关用法
- HTML DOM Style objectFit属性用法及代码示例
- HTML DOM Style overflowY属性用法及代码示例
- HTML DOM Style outlineOffset属性用法及代码示例
- HTML DOM Style outlineColor属性用法及代码示例
- HTML DOM Style opacity属性用法及代码示例
- HTML DOM Style outline属性用法及代码示例
- HTML DOM Style order属性用法及代码示例
- HTML DOM Style outlineStyle属性用法及代码示例
- HTML DOM Style outlineWidth属性用法及代码示例
- HTML DOM Style overflowX属性用法及代码示例
- HTML DOM Style overflow属性用法及代码示例
- HTML DOM Style pageBreakAfter属性用法及代码示例
- HTML DOM Style transition属性用法及代码示例
- HTML DOM Style maxWidth属性用法及代码示例
- HTML DOM Style textAlignLast属性用法及代码示例
- HTML DOM Style borderBottomWidth属性用法及代码示例
- HTML DOM Style width属性用法及代码示例
- HTML DOM Style margin属性用法及代码示例
- HTML DOM Style textDecoration属性用法及代码示例
- HTML DOM Style borderCollapse属性用法及代码示例
注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style objectPosition Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。