search
HomeWeb Front-endHTML TutorialCSS3打造3D立方体_html/css_WEB-ITnose

前言:今天用css3实现正方体。通过此案例,可以对css3在实现3D效果方面的属性有一定了解。

案例效果

HTML分析

最外层的.container触发3d效果,#cube保留父元素的3d空间同时包裹正方体的6个面,给每个面设置对应的class属性。
HTML代码如下:

<section class="container">    <div id="cube">        <figure class="front">1</figure>        <figure class="back">2</figure>        <figure class="right">3</figure>        <figure class="left">4</figure>        <figure class="top">5</figure>        <figure class="bottom">6</figure>    </div></section>
CSS分析

1. 外观

给立方体的每个面设置不同的颜色,并且对字体进行设置。
代码如下:

    #cube figure{        font-size: 120px;        line-height: 196px;        font-weight: bold;        color: white;        text-align: center;    }    .front  { background: hsla(   0, 100%, 50%, 0.5 ); }    .back   { background: hsla(  60, 100%, 50%, 0.5 ); }    .right  { background: hsla( 120, 100%, 50%, 0.5 ); }    .left   { background: hsla( 180, 100%, 50%, 0.5 ); }    .top    { background: hsla( 240, 100%, 50%, 0.5 ); }    .bottom { background: hsla( 300, 100%, 50%, 0.5 ); }

2. 定位

#cube及其包裹的子元素figure相对最外层.container绝对定位,.figure给2px的边框。
代码如下:

.container{        width: 200px;        height: 200px;        position: relative;    }    #cube{        width: 100%;/*让#cube与.container的transform-origin一样*/        height: 100%;        position: absolute;    }    #cube figure{        width: 196px;        height: 196px;        border:2px solid black;        position: absolute;    }

3. 3D效果

首先,在脑海里要有一个3D坐标系

通俗的说,Z轴就是垂直于电脑屏幕的轴,正方向指向正在电脑面前的你,X轴就是左右,Y轴就是上下。
(1) 相关属性简介:

  • transform相关函数:

    • rotate:围绕某个轴进行旋转,如rotateY(30deg)就是围绕Y轴旋转30度。正值为顺时针旋转,负值逆时针。

    • translate:在某个轴上的位移。translateZ(10px)就是在Z轴的正方向上位移10px,也就是说在原始坐标下,元素朝你位移了10px,和你接近了10px.

  • 3D属性

    • perspective:创造3D空间,值越小,元素的纵深越大,3D效果越明显。需设置在父元素。

    • transform-style:有flat和preserve-3d两个值。flat为2D平面,preserve-3d为保留父元素创造的3D空间。flat为默认值。

需要详细了解可以参看:
mdn
w3cplus

当然,最好的办法还是自己一个个属性的尝试。最好用在线编辑器可以实时查看效果。比如jsbin

(2) 效果分析
首先,我们要创造3D空间,让子元素使用父元素创造的3D空间。

.container{perspective:1000px;}#cube{transform-style:preserve-3d;}

在创造3D空间后,根据上面你已了解的transform相关函数效果,我们对右面进行一个重点分析,其他面也可采用相同的思想创建。

对于右面,首先绕Y轴旋转90度,这时右面应该是垂直居中于正面.front的。接下来,我们应该让.right右移.front一半的距离,即100px。

请注意:
如果这时候你写的是translateX(100px)的话,你会发现右面是向里面移动的。这是因为:旋转后坐标系会跟着旋转,也就是说,.right绕Y轴旋转90度后,坐标轴也随着转了90度,此时.right的Z轴已经跟着转到了我们的“右边”去了(不知道这样描述会不会懂...)。

因此,我们应该使用translateZ(100px)实现.right向“右”移动100px.
由于坐标轴会跟着元素旋转,所以我们在书写时一定要注意transform function的书写顺序。你可以先translateZ(100px)再rotateY(90deg)看看效果一样不。

同理,对于其他几面可以根据这个思路来分析。
代码如下:

.front{transform:rotateY(0deg) translateZ(100px);}.back{transform:rotateX(180deg) translateZ(100px);}.right{ transform:rotateY(90deg) translateZ(100px);}.left{transform:rotateY(-90deg) translateZ(100px);}.top{transform:rotateX(90deg) translateZ(100px);}.bottom{transform:rotateX(-90deg) translateZ(100px);}

这样,我们用CSS3打造的立方体就实现了。

过渡效果

我们让鼠标hover#cube时,figure再进行3D的变化。

    #cube:hover .front{transform:rotateY(0deg) translateZ(100px);}    #cube:hover .back{transform:rotateX(180deg) translateZ(100px);}    #cube:hover .right{ transform:rotateY(90deg) translateZ(100px);}    #cube:hover .left{transform:rotateY(-90deg) translateZ(100px);}    #cube:hover .top{transform:rotateX(90deg) translateZ(100px);}    #cube:hover .bottom{transform:rotateX(-90deg) translateZ(100px);}

最后,我们让这个变换有一个过渡的效果
#cube figure{transition:all 1s;}
OK.这样,我们的效果就实现啦!

长方体的实现

在实现长方体的时候,我们要注意不同面的宽高、位移不一样。
HTML代码如下:

<section class="container">    <div id="box">    <figure class="front">1</figure>    <figure class="back">2</figure>    <figure class="right">3</figure>    <figure class="left">4</figure>    <figure class="top">5</figure>    <figure class="bottom">6</figure>  </div></section>

CSS代码如下:

*{margin:0;}    .container{      width:300px;      height:200px;      position:relative;      perspective:1000px;      margin:50px auto;    }    #box{      width:100%;      height:100%;      position:absolute;      transform-style:preserve-3d;      transition:all 1.5s;    }    #box figure{      position:absolute;      font-size:120px;      font-weight:bold;      color:white;      line-height:196px;      text-align:center;      border:2px solid black;      transition:all 1s;    }    .front,.back{width:296px;height:196px;}    .right,.left{width:96px;height:196px;left:100px;}    .top,.bottom{width:296px;height:96px;top:50px;}         .front  { background: hsla(   0, 100%, 50%, 0.5 ); }     .back   { background: hsla(  60, 100%, 50%, 0.5 ); }     .right  { background: hsla( 120, 100%, 50%, 0.5 ); }     .left   { background: hsla( 180, 100%, 50%, 0.5 ); }     .top    { background: hsla( 240, 100%, 50%, 0.5 ); }     .bottom { background: hsla( 300, 100%, 50%, 0.5 ); }        #box:hover .front{transform:rotateY(0deg) translateZ(50px);}    #box:hover .back{transform:rotateY(180deg) translateZ(50px);}    #box:hover .right{transform:rotateY(90deg)translateZ(150px);}    #box:hover .left{transform:rotateY(-90deg) translateZ(150px);}    #box:hover .top{transform:rotateX(90deg) translateZ(100px);}    #box:hover .bottom{transform:rotateX(-90deg) translateZ(100px);}    #box:hover{transform:translateZ(200px);}
总结

其实实现这个,收获最大的就是知道了坐标轴会改变坐标轴会改变坐标轴会改变,以及transform的几个函数的效果。因此,一定要注意transform函数的书写顺序。

参考资料

mdn
w3cplus
Intro to CSS 3D transforms

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
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 is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

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

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 viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

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

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function