HTML DOM 样式透视图属性返回并修改在 HTML 文档中查看 3D 元素的方式。
用法
以下是语法 -
一、回归视角
object.perspective
2. 修改视角
object.perspective = “value”
这里,value 可以是 -
值 | 解释 |
---|---|
Initial | 它将此属性值设置为其默认值。 |
inherit | 它从其父元素继承此属性值。 |
None | 它没有设定任何观点。 |
length | 它以长度单位指定元素距视图的距离。 |
让我们看一个 HTML DOM 样式透视属性的例子 -
示例
<!DOCTYPE html>
<html>
<style>
body {
color:#000;
height:100vh;
background-color:#8BC6EC;
background-image:linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
}
.btn {
background:#db133a;
border:none;
height:2rem;
border-radius:2px;
width:40%;
display:block;
color:#fff;
outline:none;
cursor:pointer;
margin:1rem auto;
}
.box {
text-align:center;
width:200px;
height:200px;
background-color:#db133a;
transform:rotateX(25deg);
margin:2rem auto;
}
</style>
<body>
<h1 style="text-align:center">DOM Style perspective Property Demo</h1>
<div class='box'></div>
<button class="btn" onclick="set()">Set Perspective</button>
<script>
function set() {
document.body.style.perspective = "100px";
}
</script>
</body>
</html>
输出
点击 ”Set Perspective” 按钮设置视角red 盒子。
相关用法
- HTML DOM Style perspectiveOrigin属性用法及代码示例
- HTML DOM Style pageBreakAfter属性用法及代码示例
- HTML DOM Style pageBreakInside属性用法及代码示例
- HTML DOM Style paddingTop属性用法及代码示例
- HTML DOM Style position属性用法及代码示例
- HTML DOM Style pageBreakBefore属性用法及代码示例
- HTML DOM Style paddingRight属性用法及代码示例
- HTML DOM Style paddingLeft属性用法及代码示例
- HTML DOM Style padding属性用法及代码示例
- HTML DOM Style overflowY属性用法及代码示例
- HTML DOM Style transition属性用法及代码示例
- HTML DOM Style outlineOffset属性用法及代码示例
- 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 perspective Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。