- CSS 教程
- CSS - 教程
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 度量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - border-block 属性
- CSS - 边框内联
- CSS - 边距
- CSS - 列表
- CSS - Padding 属性
- CSS - 光标
- CSS - 轮廓
- CSS - 维度
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉列表
- CSS - visibility 属性
- CSS - Overflow 属性
- CSS - 清除修复
- CSS - float(浮点)
- CSS - 箭头
- CSS - resize 属性
- CSS - quotes 属性
- CSS - order 属性
- CSS - Position 属性
- CSS - hypens 属性
- CSS - :hover(悬停)
- CSS - display(显示)
- CSS - focus 属性
- CSS - zoom(缩放)
- CSS - translate 属性
- CSS - Height 属性
- CSS - hyphenate-character 属性
- CSS - Width 属性
- CSS - opacity 属性
- CSS - z-index 属性
- CSS - bottom 属性
- CSS - 导航栏
- CSS - 覆盖
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - Atrribute 选择器属性
- CSS - 运算器
- CSS - root
- CSS - 盒子模型
- CSS - 计数器
- CSS - Clip (Obsolete) 属性
- CSS - writing-mode 属性
- CSS - Unicode-bidi 属性
- CSS - min-content 属性
- CSS - 全部
- CSS - inset 属性
- CSS - isolation 属性
- CSS - overscroll-behavior 属性
- CSS - justify-items 属性
- CSS - justify-self 属性
- CSS - tab-size 属性
- CSS - pointer-event 属性
- CSS - place-content 属性
- CSS - place-items 属性
- CSS - place-self 属性
- CSS - max-block-size 属性
- CSS - min-block-size 属性
- CSS - mix-blend-mode 属性
- CSS - max-inline-size 属性
- CSS - min-inline-size 属性
- CSS - offset 属性
- CSS - accent-color 属性
- CSS - user-select 属性
- CSS 高级
- CSS - grid 属性
- CSS - Grid 布局
- CSS - flexbox
- CSS - vertical-align 属性
- css - positioning
- css - layers
- css - pseudo_classes
- CSS - 伪元素
- CSS - @ 规则
- CSS 滤镜 - text-effect 属性
- CSS 分页媒体
- CSS 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS - 圆角
- CSS - 边框图像
- CSS - 多种背景
- CSS - 渐变
- CSS - box-shadow 属性
- CSS - box-decoration-break 属性
- CSS - caret-color 属性
- CSS - text-shadow 属性
- CSS - 2D 转换
- CSS - 3D 变换
- CSS - transition 属性
- CSS - 动画
- CSS - 多列布局
- CSS - 盒子大小调整
- CSS - 工具提示
- CSS - buttons
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 值函数
- CSS - 数学函数
- CSS - Mask 属性
- CSS - shape-outside 属性
- CSS - 样式图像
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS - 响应式网页设计 (RWD)
- CSS - 响应式设计视口
- CSS - 响应式网格视图
- CSS - 响应式媒体查询
- CSS - 响应式图像
- CSS - 响应式视频
- CSS - 响应式框架
- CSS 引用
- CSS - 所有属性列表
- CSS - 颜色引用
- CSS - 浏览器支持参考
- CSS - 网页字体
- CSS 工具
- CSS - PX 到 EM 的转换
CSS - perspective-origin 属性
CSS 属性 perspective-origin 指定了查看者/用户正在查看的位置。此位置被 CSS perspective 属性用作消失点。
属性 perspective-origin 和 perspective 与在三维空间中转换的子项的父项相关联;而转换函数 Perspective() 链接到正在转换的元素。
可能的值
CSS 属性 perspective-origin 可以具有以下值之一:
1. x-position:指定消失点的横坐标(x 轴)的位置。它可以具有给定的值之一:
- <length-percentage>:将位置指定为绝对长度值或相对于元素宽度的位置。值可能为负数。
- left:长度值为 0 的关键字。
- center:关键字的长度值为50%百分比值。
- right:长度值的关键字 100% 百分比值。
2. y 位置:指定消失点的纵坐标(y 轴)的位置。它可以具有给定的值之一:
- <length-percentage>:将位置指定为绝对长度值或相对于元素宽度的位置。值可能为负数。
- top:长度值为 0 的关键字。
- center:关键字的长度值为50%百分比值。
- bottom:长度值的关键字 100% 百分比值。
适用于
所有可转换元素。
语法
以下是指定 perspective-origin 属性的不同方法:
/* One-value syntax */
perspective-origin = x-position;
/* Two-value syntax */
perspective-origin = x-position y-position;
/* x-position and y-position values are keywords, following syntax is valid */
perspective-origin = y-position x-position;
/* Global values */
perspective-origin: inherit;
perspective-origin: initial;
perspective-origin: revert;
perspective-origin: revert-layer;
perspective-origin: unset;
CSS perspective-origin - x-position (关键字)
以下示例演示了如何使用 CSS 属性 perspective-origin 和 One-value 语法(关键字值)。
<html>
<head>
<style>
.container {
width: 150px;
height: 150px;
border: none;
display: block;
}
.cube {
width: 30%;
height: 30%;
perspective: 350px;
transform-style: preserve-3d;
margin-bottom: 80px;
padding: 10px;
}
.face {
position: absolute;
width: 100px;
height: 100px;
border: 1px solid black;
line-height: 80px;
font-size: 3.5em;
color: white;
text-align: center;
}
.front {
background: rgba(100, 0, 100, 0.2);
transform: translateZ(50px);
}
.back {
background: rgba(178, 178, 0, 0.5);
color: black;
transform: rotateY(180deg) translateZ(50px);
}
.right {
background: rgba(0, 0, 178, 0.5);
transform: rotateY(90deg) translateZ(50px);
}
.left {
background: rgba(178, 0, 0, 0.5);
transform: rotateY(-90deg) translateZ(50px);
}
.top {
background: rgba(0, 200, 0);
transform: rotateX(90deg) translateZ(50px);
}
.bottom {
background: rgba(0, 0, 0, 0.2);
transform: rotateX(-90deg) translateZ(50px);
}
.po-left {
perspective-origin: left;
}
.po-right {
perspective-origin: right;
}
.po-center {
perspective-origin: center;
}
</style>
</head>
<body>
<h1>perspective-origin - x-position</h1>
<div class="container">
<p>perspective-origin: left</p>
<div class="cube po-left">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
<p>perspective-origin: center</p>
<div class="cube po-center">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
<p>perspective-origin: right</p>
<div class="cube po-right">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
</div>
</body>
</html>
CSS perspective-origin - x 位置(长度)
以下示例演示了如何使用 CSS 属性 perspective-origin 和 One-value 语法(长度值),包括正值和负值。
<html>
<head>
<style>
.container {
width: 150px;
height: 150px;
border: none;
display: block;
}
.cube {
width: 30%;
height: 30%;
perspective: 350px;
transform-style: preserve-3d;
margin-bottom: 80px;
padding: 20px;
}
.face {
position: absolute;
width: 100px;
height: 100px;
border: 1px solid black;
line-height: 80px;
font-size: 3.5em;
color: white;
text-align: center;
}
.front {
background: rgba(100, 0, 100, 0.2);
transform: translateZ(50px);
}
.back {
background: rgba(178, 178, 0, 0.5);
color: black;
transform: rotateY(180deg) translateZ(50px);
}
.right {
background: rgba(0, 0, 178, 0.5);
transform: rotateY(90deg) translateZ(50px);
}
.left {
background: rgba(178, 0, 0, 0.5);
transform: rotateY(-90deg) translateZ(50px);
}
.top {
background: rgba(0, 200, 0);
transform: rotateX(90deg) translateZ(50px);
}
.bottom {
background: rgba(0, 0, 0, 0.2);
transform: rotateX(-90deg) translateZ(50px);
}
.po-length-cm {
perspective-origin: 10cm;
}
.po-length-em {
perspective-origin: 20em;
}
.po-length-px {
perspective-origin: 200px;
}
.po-length-neg {
perspective-origin: -200px;
}
</style>
</head>
<body>
<center>
<h1>perspective-origin - x-position</h1>
<div class="container">
<p>perspective-origin: 10cm</p>
<div class="cube po-length-cm">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
<p>perspective-origin: 20em</p>
<div class="cube po-length-em">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
<p>perspective-origin: 200px</p>
<div class="cube po-length-px">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
<p>perspective-origin: -200px</p>
<div class="cube po-length-neg">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
</div>
</center>
</body>
</html>
CSS perspective-origin - x 位置(百分比)
以下示例演示了如何使用 CSS 属性 perspective-origin 和 One-value 语法(百分比值),包括正值和负值。
<html>
<head>
<style>
.container {
width: 150px;
height: 150px;
border: none;
display: block;
}
.cube {
width: 30%;
height: 30%;
perspective: 350px;
transform-style: preserve-3d;
margin-bottom: 80px;
padding: 20px;
}
.face {
position: absolute;
width: 100px;
height: 100px;
border: 1px solid black;
line-height: 80px;
font-size: 3.5em;
color: white;
text-align: center;
}
.front {
background: rgba(100, 0, 100, 0.2);
transform: translateZ(50px);
}
.back {
background: rgba(178, 178, 0, 0.5);
color: black;
transform: rotateY(180deg) translateZ(50px);
}
.right {
background: rgba(0, 0, 178, 0.5);
transform: rotateY(90deg) translateZ(50px);
}
.left {
background: rgba(178, 0, 0, 0.5);
transform: rotateY(-90deg) translateZ(50px);
}
.top {
background: rgba(0, 200, 0);
transform: rotateX(90deg) translateZ(50px);
}
.bottom {
background: rgba(0, 0, 0, 0.2);
transform: rotateX(-90deg) translateZ(50px);
}
.po-per-positive {
perspective-origin: 200%;
}
.po-per-negative {
perspective-origin: -200%;
}
</style>
</head>
<body>
<center>
<h1>perspective-origin - x-position</h1>
<div class="container">
<p>perspective-origin: 200%</p>
<div class="cube po-per-positive">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
<p>perspective-origin: -200%</p>
<div class="cube po-per-negative">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
</div>
</center>
</body>
</html>
CSS perspective-origin - y-position (关键字)
以下示例演示了如何使用 CSS 属性 perspective-origin 和 One-value 语法(关键字值)。
<html>
<head>
<style>
.container {
width: 150px;
height: 150px;
border: none;
display: block;
}
.cube {
width: 30%;
height: 30%;
perspective: 350px;
transform-style: preserve-3d;
margin-bottom: 80px;
padding: 20px;
}
.face {
position: absolute;
width: 100px;
height: 100px;
border: 1px solid black;
line-height: 80px;
font-size: 3.5em;
color: white;
text-align: center;
}
.front {
background: rgba(100, 0, 100, 0.2);
transform: translateZ(50px);
}
.back {
background: rgba(178, 178, 0, 0.5);
color: black;
transform: rotateY(180deg) translateZ(50px);
}
.right {
background: rgba(0, 0, 178, 0.5);
transform: rotateY(90deg) translateZ(50px);
}
.left {
background: rgba(178, 0, 0, 0.5);
transform: rotateY(-90deg) translateZ(50px);
}
.top {
background: rgba(0, 200, 0);
transform: rotateX(90deg) translateZ(50px);
}
.bottom {
background: rgba(0, 0, 0, 0.2);
transform: rotateX(-90deg) translateZ(50px);
}
.po-y-top {
perspective-origin: top;
}
.po-y-center {
perspective-origin: center;
}
.po-y-bottom {
perspective-origin: bottom;
}
</style>
</head>
<body>
<center>
<h1>perspective-origin: y-position (keyword)</h1>
<div class="container">
<p>perspective-origin: top</p>
<div class="cube po-y-top">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
<p>perspective-origin: center</p>
<div class="cube po-y-center">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
<p>perspective-origin: bottom</p>
<div class="cube po-y-bottom">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
</div>
</center>
</body>
</html>
CSS perspective-origin -x-position, y-position(关键字)
以下示例演示了如何使用 CSS 属性 perspective-origin 和双值语法(关键字值)。
<html>
<head>
<style>
.container {
width: 150px;
height: 150px;
border: none;
display: block;
}
.cube {
width: 30%;
height: 30%;
perspective: 350px;
transform-style: preserve-3d;
margin-bottom: 80px;
padding: 20px;
}
.face {
position: absolute;
width: 100px;
height: 100px;
border: 1px solid black;
line-height: 80px;
font-size: 3.5em;
color: white;
text-align: center;
}
.front {
background: rgba(100, 0, 100, 0.2);
transform: translateZ(50px);
}
.back {
background: rgba(178, 178, 0, 0.5);
color: black;
transform: rotateY(180deg) translateZ(50px);
}
.right {
background: rgba(0, 0, 178, 0.5);
transform: rotateY(90deg) translateZ(50px);
}
.left {
background: rgba(178, 0, 0, 0.5);
transform: rotateY(-90deg) translateZ(50px);
}
.top {
background: rgba(0, 200, 0);
transform: rotateX(90deg) translateZ(50px);
}
.bottom {
background: rgba(0, 0, 0, 0.2);
transform: rotateX(-90deg) translateZ(50px);
}
.po-left-top {
perspective-origin: left top;
}
.po-center-bottom {
perspective-origin: center bottom;
}
.po-right-bottom {
perspective-origin: right bottom;
}
</style>
</head>
<body>
<center>
<h1>perspective-origin: x-position y-position (keyword)</h1>
<div class="container">
<p>perspective-origin: left top</p>
<div class="cube po-left-top">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
<p>perspective-origin: center bottom</p>
<div class="cube po-center-bottom">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
<p>perspective-origin: right bottom</p>
<div class="cube po-right-bottom">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
</div>
</center>
</body>
</html>
CSS perspective-origin - x-position, y-position, (百分比)
以下示例演示了如何使用 CSS 属性 perspective-origin 和双值语法(百分比值),包括正值和负值。
<html>
<head>
<style>
.container {
width: 150px;
height: 150px;
border: none;
display: block;
}
.cube {
width: 30%;
height: 30%;
perspective: 350px;
transform-style: preserve-3d;
margin-bottom: 80px;
padding: 20px;
}
.face {
position: absolute;
width: 100px;
height: 100px;
border: 1px solid black;
line-height: 80px;
font-size: 3.5em;
color: white;
text-align: center;
}
.front {
background: rgba(100, 0, 100, 0.2);
transform: translateZ(50px);
}
.back {
background: rgba(178, 178, 0, 0.5);
color: black;
transform: rotateY(180deg) translateZ(50px);
}
.right {
background: rgba(0, 0, 178, 0.5);
transform: rotateY(90deg) translateZ(50px);
}
.left {
background: rgba(178, 0, 0, 0.5);
transform: rotateY(-90deg) translateZ(50px);
}
.top {
background: rgba(0, 200, 0);
transform: rotateX(90deg) translateZ(50px);
}
.bottom {
background: rgba(0, 0, 0, 0.2);
transform: rotateX(-90deg) translateZ(50px);
}
.po-per-positive {
perspective-origin: 250% 100%;
}
.po-per-negative {
perspective-origin: -200% -100%;
}
</style>
</head>
<body>
<center>
<h1>perspective-origin: x-position y-position</h1>
<div class="container">
<p>perspective-origin: 250% 100%</p>
<div class="cube po-per-positive">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
<p>perspective-origin: -200% -100%</p>
<div class="cube po-per-negative">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
</div>
</center>
</body>
</html>
CSS perspective-origin - x-position, y-position, (长度)
以下示例演示了如何使用 CSS 属性 perspective-origin 和双值语法(长度值),包括正值和负值。
<html>
<head>
<style>
.container {
width: 150px;
height: 150px;
border: none;
display: block;
}
.cube {
width: 30%;
height: 30%;
perspective: 350px;
transform-style: preserve-3d;
margin-bottom: 80px;
padding: 20px;
}
.face {
position: absolute;
width: 100px;
height: 100px;
border: 1px solid black;
line-height: 80px;
font-size: 3.5em;
color: white;
text-align: center;
}
.front {
background: rgba(100, 0, 100, 0.2);
transform: translateZ(50px);
}
.back {
background: rgba(178, 178, 0, 0.5);
color: black;
transform: rotateY(180deg) translateZ(50px);
}
.right {
background: rgba(0, 0, 178, 0.5);
transform: rotateY(90deg) translateZ(50px);
}
.left {
background: rgba(178, 0, 0, 0.5);
transform: rotateY(-90deg) translateZ(50px);
}
.top {
background: rgba(0, 200, 0);
transform: rotateX(90deg) translateZ(50px);
}
.bottom {
background: rgba(0, 0, 0, 0.2);
transform: rotateX(-90deg) translateZ(50px);
}
.po-len-positive {
perspective-origin: 250px 100px;
}
.po-len-negative {
perspective-origin: -200px -100px;
}
</style>
</head>
<body>
<center>
<h1>perspective-origin: x-position y-position</h1>
<div class="container">
<p>perspective-origin: 250px 100px</p>
<div class="cube po-len-positive">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
<p>perspective-origin: -200px -100px</p>
<div class="cube po-len-negative">
<div class="face front"></div>
<div class="face back"></div>
<div class="face right"></div>
<div class="face left"></div>
<div class="face top"></div>
<div class="face bottom"></div>
</div>
</div>
</center>
</body>
</html>