search
HomeWeb Front-endHTML Tutorial「CSS3 」3D效果 & 透视_html/css_WEB-ITnose

随着浏览器的不断进步和更新,许多的新特性也崭露头角。
许许多多以前需要用 gif 图片或者是 flash 实现的效果,现在使用 CSS 就可以实现了。消耗部分计算能力,从而大大减少了流量的交换。

今天要介绍的是 CSS3 中的3D效果,以及非常新的透视功能。

3D变换效果

CSS3 的3D效果是使用 transform 属性的 rotateX(Y, Z), translateX(Y, Z), scaleX(Y, Z)方法进行设置的。

一个元素如果进行3D变换,它在3D空间的初始位置是这样的:
// 下图有错,正在更改

上图使用了立方体来更好的说明位置,如果只是单单一个元素的话,它的形状是一个平面区域。

下面来分别介绍一下 transform 属性的3D相关方法。由于这些方法非常易于理解,所以我不赘述。

rotateX (Y, Z)

这个方法使得元素绕着X、Y或Z轴进行旋转,需要注意的是,所有的旋转都是已逆时针方向为正方向。

translateX (Y, Z)

translateX 和 translateY 和2D空间的平移是一样的,重点说一下 translateZ。

由于默认开启的是平行投影,所以当你更改一个元素的Z值的时候,视觉上没有任何变化。如何开启透视投影?不急,先慢慢看,后面会介绍到。

scaleX (Y, Z)

在X、Y或Z轴上对图像进行缩放,不多说。

CSS属性: transform-style

!这是一个非常重要的属性,值可以是:

  • flat(default)

  • preserve-3d

这里许许多多的文章都没有说清楚,不才在这里尝试解释一下。

设置了 preserve-3d 属性的元素会生成一个3D的空间,将所有的子元素(不是后代元素)都囊括在这个3D空间内。
对于父元素的 transform 属性,会应用到生成的3D空间中,对整个空间进行缩放,平移,旋转。
最后将所有的元素平行投影到屏幕上(不是父元素)。

请自己看上面的一段文字,如果能够理解,那么尝试分析 flat:
子元素并没有在父元素的3D空间内,它们独立的,各自做自己的3D变换,然后按照先后次序(即translateZ无效)投影到父元素(不是屏幕)上。
由于所有的子元素都投影到父元素上,那么父元素的 transform 属性在视觉效果上是对父元素这个平面区域进行的。

// DEMO:case1

通过这个DEMO我们可以看到 flat 和 preserve-3d 的区别,更加理解上面的文字。

transform: translateX(10px) rotateZ(90deg);

你以为是先平移10px再相对于以Z轴为旋转轴旋转90度吗?
其实并不是,tranform 的属性是从右边的方法依次应用到左边的方法的。

/*
 * 中场休息: 先好好消化一下上面的内容吧!
 */

透视投影

透视投影模拟人眼的图像观察方式,这种方式能够对物体的远近,方位进行判断,从视觉上来说更加接近人类所熟悉的效果。

perspective: none | <length>;
transform: perspective(<length>) method(p) method(p) ...;

第一种方法: 将 perspective 属性更改为 >0 的数值,便可以将这个空间设置为透视投影,即所有子元素(仅仅是, 不包括自身)的投影到屏幕的方式变为透视投影。

第二种方法: 将perspective()方法加入到元素的transform 属性的第一个(即最后应用),便可以将这个元素(仅仅是这个元素)开启透视投影。

注意,这个透视投影的像平面和Z=0平面是重合的,原理图如下:

其中,焦点到z=0平面的距离是 perspective 的值。
从上图我们可以看出,当 perspective 的值越小的时候,Z值对于视觉效果的影响更加强烈,越大的时候,Z值对于视觉的影响更加细微。一般来说,在500px到1000px的时候视觉上更加合理。

当元素的Z值使得元素在焦点之后,元素则不会被捕捉到。

// DEMO: case2(perspective: 500px;)

可以自己思考一下,左图中为什么上下两个面会显示。(画出它的投影)

我们还可以调整焦点的位置(默认在中心):

perspective-origin: x y;

其中x的值可以是: 长度、百分比,left(相当于0)、center(相当于50%, 默认)、right(相当于100%);
其中y的值可以是: 长度、百分比,top(相当于0)、center(相当于50%, 默认)、bottom(相当于100%)。

// DEMO: case3(perspective-origin: 0 0;)

DEMO

[重要提示]请不要忘记推荐收藏 (??□′)?? ┴─┴

git clone https://github.com/JasonKid/fezone.git

搜索 3D效果 & 透视

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages?How to efficiently add stroke effects to PNG images on web pages?Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.