1. 变换
  2. 透视

变换

透视

控制元素在三维空间中透视的工具。

ClassStyles
perspective-dramatic
perspective: var(--perspective-dramatic); /* 100px */
perspective-near
perspective: var(--perspective-near); /* 300px */
perspective-normal
perspective: var(--perspective-normal); /* 500px */
perspective-midrange
perspective: var(--perspective-midrange); /* 800px */
perspective-distant
perspective: var(--perspective-distant); /* 1200px */
perspective-none
perspective: none;
perspective-(<custom-property>)
perspective: var(<custom-property>);
perspective-[<value>]
perspective: <value>;

示例

基本示例

使用诸如 perspective-normalperspective-distant 这样的工具来控制 z 平面与屏幕之间的距离:

perspective-dramatic

1
2
3
4
5
6

perspective-normal

1
2
3
4
5
6
<div class="size-20 perspective-dramatic ...">
<div class="translate-z-12 rotate-x-0 bg-sky-300/75 ...">1</div>
<div class="-translate-z-12 rotate-y-180 bg-sky-300/75 ...">2</div>
<div class="translate-x-12 rotate-y-90 bg-sky-300/75 ...">3</div>
<div class="-translate-x-12 -rotate-y-90 bg-sky-300/75 ...">4</div>
<div class="-translate-y-12 rotate-x-90 bg-sky-300/75 ...">5</div>
<div class="translate-y-12 -rotate-x-90 bg-sky-300/75 ...">6</div>
</div>
<div class="size-20 perspective-normal ...">
<div class="translate-z-12 rotate-x-0 bg-sky-300/75 ...">1</div>
<div class="-translate-z-12 rotate-y-180 bg-sky-300/75 ...">2</div>
<div class="translate-x-12 rotate-y-90 bg-sky-300/75 ...">3</div>
<div class="-translate-x-12 -rotate-y-90 bg-sky-300/75 ...">4</div>
<div class="-translate-y-12 rotate-x-90 bg-sky-300/75 ...">5</div>
<div class="translate-y-12 -rotate-x-90 bg-sky-300/75 ...">6</div>
</div>

这就像将相机移近或移远物体。

移除透视

使用 perspective-none 工具从元素中移除透视变换:

<div class="perspective-none ...">
<!-- ... -->
</div>

使用自定义值

Use the perspective-[<value>] syntax to set the perspective based on a completely custom value:

<div class="perspective-[750px] ...">
<!-- ... -->
</div>

For CSS variables, you can also use the perspective-(<custom-property>) syntax:

<div class="perspective-(--my-perspective) ...">
<!-- ... -->
</div>

This is just a shorthand for perspective-[var(<custom-property>)] that adds the var() function for you automatically.

响应式设计

Prefix a perspective utility with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:

<div class="perspective-midrange md:perspective-dramatic ...">
<!-- ... -->
</div>

Learn more about using variants in the variants documentation.

自定义主题

Use the --perspective-* theme variables to customize the perspective utilities in your project:

@theme {
--perspective-远程: 1800px;
}

Now the perspective-远程 utility can be used in your markup:

<div class="perspective-远程">
<!-- ... -->
</div>

Learn more about customizing your theme in the theme documentation.