- CSS 教程
- CSS - 首页
- CSS - 路线图
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 引入
- CSS - 测量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图片
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - 块级边框
- CSS - 内联边框
- CSS - 外边距
- CSS - 列表
- CSS - 内边距
- CSS - 光标
- CSS - 轮廓
- CSS - 尺寸
- CSS - 滚动条
- CSS - 内联块级元素
- CSS - 下拉菜单
- CSS - 可见性
- CSS - 溢出
- CSS - Clearfix
- CSS - 浮动
- CSS - 箭头
- CSS - 调整大小
- CSS - 引号
- CSS - 顺序
- CSS - 定位
- CSS - 连字符
- CSS - 悬停
- CSS - 显示
- CSS - 焦点
- CSS - 缩放
- CSS - 平移
- CSS - 高度
- CSS - 连字符字符
- CSS - 宽度
- CSS - 不透明度
- CSS - Z-index
- CSS - 底部
- CSS - 导航栏
- CSS - 覆盖层
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载动画
- CSS - 属性选择器
- CSS - 组合器
- CSS - 根元素
- CSS - 盒模型
- CSS - 计数器
- CSS - 剪辑
- CSS - 书写模式
- CSS - Unicode-bidi
- CSS - min-content
- CSS - All
- CSS - Inset
- CSS - 隔离
- CSS - 滚动溢出
- CSS - Justify Items
- CSS - Justify Self
- CSS - Tab Size
- CSS - 指针事件
- 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 - 网格
- CSS - 网格布局
- CSS - Flexbox
- CSS - 可见性
- CSS - 定位
- CSS - 图层
- CSS - 伪类
- CSS - 伪元素
- CSS - @规则
- CSS - 文本效果
- CSS - 分页媒体
- CSS - 打印
- CSS - 布局
- CSS - 验证
- CSS - 图片精灵
- CSS - Important
- CSS - 数据类型
- CSS3 教程
- CSS3 - 教程
- CSS - 圆角
- CSS - 边框图片
- CSS - 多重背景
- CSS - 颜色
- CSS - 渐变
- CSS - 盒阴影
- CSS - 盒装饰中断
- CSS - Caret Color
- CSS - 文本阴影
- CSS - 文本
- CSS - 2D 变换
- CSS - 3D 变换
- CSS - 过渡
- CSS - 动画
- CSS - 多列
- CSS - 盒尺寸
- CSS - 工具提示
- CSS - 按钮
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 函数
- CSS - 数学函数
- CSS - 遮罩
- CSS - 形状
- CSS - 样式图片
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS RWD - 简介
- CSS RWD - 视口
- CSS RWD - 网格视图
- CSS RWD - 媒体查询
- CSS RWD - 图片
- CSS RWD - 视频
- CSS RWD - 框架
- CSS 工具
- CSS - PX 到 EM 转换器
- CSS - 颜色选择器和动画
- CSS 资源
- CSS - 有用资源
- CSS - 讨论
CSS - 3D 变换
CSS 变换用于通过使用 translate、scale 和 rotate 等属性在三维空间中为元素设置动画。换句话说,这些函数允许您沿 X、Y 和 Z 轴旋转、缩放和移动元素,为您的设计添加深度和透视感。
2D 变换
3D 变换
目录
CSS 3D 平移
CSS 中的 **translate3d** 函数通过指定沿 X、Y 和 Z 轴的偏移量来在 3D 空间中移动元素,其中 Z 轴控制深度(朝向或远离观察者的距离)。以下示例显示了一个在悬停时在 3D 空间中移动的盒子。**perspective** 属性用于为 3D 效果提供深度感。
示例
<!DOCTYPE html> <html lang="en"> <head> <style> body { height: 300px; display: flex; justify-content: center; align-items: center; background-color: #f0f0f0; font-family: Arial, sans-serif; } /* Container with Perspective */ .container { perspective: 800px; } /* The Box Element */ .box { width: 200px; height: 200px; background-color: #4CAF50; color: white; display: flex; justify-content: center; align-items: center; font-size: 1.5em; border-radius: 10px; /* Initial 3D Transformation */ transform: translate3d(50px, 50px, 100px) rotateX(15deg) rotateY(25deg); transition: transform 0.6s ease; } /* Hover State with Different 3D Transformation */ .box:hover { transform: translate3d(-50px, -50px, -100px); background-color: #2ecc71; cursor: pointer; } </style> </head> <body> <div class="container"> <div class="box"> 3D Box </div> </div> </body> </html>
CSS 3D 旋转
CSS 中的 **rotate3d** 函数允许您通过定义旋转矢量的 X、Y 和 Z 分量以及旋转角度,在 3D 空间中围绕指定轴旋转元素。以下示例显示了一个在悬停时在 3D 空间中旋转的盒子,创造了动态的视觉效果。
示例
<!DOCTYPE html> <html lang="en"> <head> <style> body { height: 300px; display: flex; justify-content: center; align-items: center; background-color: #f0f0f0; font-family: Arial, sans-serif; } /* Container with Perspective */ .container { perspective: 800px; } /* The Box Element */ .box { width: 200px; height: 200px; background-color: #4CAF50; color: white; display: flex; justify-content: center; align-items: center; font-size: 1.5em; border-radius: 10px; /* Initial 3D Rotation */ transform: rotate3d(1, 1, 1, 45deg); transition: transform 0.6s ease; } /* Hover State with Different 3D Rotation */ .box:hover { transform: rotate3d(1, 1, 0, -45deg); background-color: #2ecc71; cursor: pointer; } </style> </head> <body> <div class="container"> <div class="box"> 3D Box </div> </div> </body> </html>
CSS 3D 缩放
CSS 中的 **scale3d** 函数通过指定沿 X、Y 和 Z 轴的缩放因子来在 3D 空间中缩放元素,允许进行统一或非统一缩放。以下示例显示了一个在悬停时在 3D 空间中缩放的盒子,创造了视觉上吸引人的缩放效果。
示例
<!DOCTYPE html> <html lang="en"> <head> <style> body { height: 300px; display: flex; justify-content: center; align-items: center; background-color: #f0f0f0; font-family: Arial, sans-serif; } /* Container with Perspective */ .container { perspective: 800px; } /* The Box Element */ .box { width: 150px; height: 150px; background-color: #4CAF50; color: white; display: flex; justify-content: center; align-items: center; font-size: 1.5em; border-radius: 10px; /* Initial 3D Scaling */ transform: scale3d(1, 1, 1) rotate3d(1, 1, 0, -45deg); transition: transform 0.6s ease; } /* Hover State with Different 3D Scaling */ .box:hover { transform: scale3d(1.5, 1.5, 0.5); background-color: #2ecc71; cursor: pointer; } </style> </head> <body> <div class="container"> <div class="box"> 3D Box </div> </div> </body> </html>
CSS 3D 变换相关属性
下表列出了用于在三维空间中变换元素的各种属性。
属性 | 描述 | 示例 |
---|---|---|
backface-visibility | 将元素背面的可见性设置为对用户可见。 | |
perspective | 确定 z=0 平面与用户之间的距离。 | |
perspective-origin | 确定用户观察 3D 定位元素的位置。 | |
rotate3d | 在三维空间中旋转元素。 | |
scale | 在三维空间中缩放元素。 | |
transform | 在三维空间中变换元素。 | |
translate | 在三维空间中平移元素。 | |
rotateZ() | 围绕 z 轴旋转元素。 | |
scaleZ() | 沿 z 轴向上或向下缩放元素。 | |
translateZ() | 沿 z 轴向上或向下平移元素。 |
广告