HTML連載75-3D轉換模塊之正方體

1、正方體html

核心要點就是:使用3D轉換模塊,以及平移、旋轉的在X、Y、Z軸上的應用git

 

    <style>

        *{

            margin:0;

            padding:0;

        }

        ul{

            width: 200px;

            height: 200px;

            border: 1px solid black;

            box-sizing:border-box;

            margin:100px auto;

            position:relative;

            transform: rotateY(0deg) rotateX(0deg);

            transform-style: preserve-3d;/*轉換成一個3D的面*/}

        li{

            list-style: none;

            width: 200px;

            height: 200px;

            text-align:center;

            line-height:200px;

            font-size:60px;

            position:absolute;

        }

        ul li:nth-child(1){

            background-color: red;

            transform:translate(-100px) rotateY(-90deg);}

        ul li:nth-child(2){

            background-color: blue;

            transform:translate(100px) rotateY(90deg);/*複習了translate是左右平移,可指定按照哪一個軸平移,好比transformY就是上下平移*/

        }

        ul li:nth-child(3){

            background-color: purple;

            transform:translateY(100px) rotateX(-90deg);

        }

        ul li:nth-child(4){

            background-color: pink;

            transform:translateY(-100px) rotateX(90deg);

        }

        ul li:nth-child(5){

            background-color: white;

            transform:translateZ(100px) rotateX(0deg);

        }

        ul li:nth-child(6){

            background-color: yellow;

            transform:translateZ(-100px) rotateX(-180deg);

        }

.........省略代碼..........

<ul>

    <!--這裏的六個li表明的就是正方體的六個面-->

    <li>1</li>

    <li>2</li>

    <li>3</li>

    <li>4</li>

    <li>5</li>

    <li>6</li>

</ul>

</body>

 

2、源碼:github

D183_CubeOf3DTransformModule.html微信

地址:學習

https://github.com/ruigege66/HTML_learning/blob/master/D183_CubeOf3DTransformModule.html​大數據

2.CSDN:https://blog.csdn.net/weixin_44630050ui

3.博客園:https://www.cnblogs.com/ruigege0000/spa

4.歡迎關注微信公衆號:傅里葉變換,我的帳號,僅用於技術交流,後臺回覆「禮包」獲取Java大數據學習視頻禮包.net

 

相關文章
相關標籤/搜索