perspective-origin 属性定义 3D 元素所基于的 X 轴和 Y 轴标准。
注意:它是一个元素的子元素,透视图,而不是元素本身。常与perspective
属性组合使用。
perspective-origin: x-axis y-axis;
值 | 说明 |
x-axis | 定义该视图在 x 轴上的位置。默认值:50%。 可能的值: left 、 center 、right 、 length 、 % |
y-axis | 定义该视图在 y 轴上的位置。默认值:50%。 可能的值: top 、 center 、 bottom 、 length 、 % |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style>
#div1
{
position: relative;
height: 150px;
width: 150px;
margin: 50px;
padding:10px;
border: 1px solid black;
perspective:150;
/* Safari and Chrome */
-webkit-perspective:150;
}
#div2
{
padding:50px;
position: absolute;
border: 1px solid black;
background-color: green;
transform: rotateX(45deg);
/* Safari and Chrome */
-webkit-transform: rotateX(45deg);
}
</style>
</head>
<body>
<div id="div1">
<div id="div2">FishC</div>
</div>
</body>
</html>
表格中的数字表示支持该属性的第一个浏览器版本号。
Safari | Chrome | FireFox | IE |
4.0 | 12.0 | 10.0 | 10.0 |