码迷,mamicode.com
首页 > 其他好文 > 详细

三维立体

时间:2017-01-04 07:45:20      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:res   body   eps   分享   lis   pos   log   list   html   

点一下,让它动起来。

技术分享

 

 

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style>
        *{margin:0;padding:0;list-style: none;}
        #box{
            width: 200px;
            height: 200px;
            margin: 100px auto;
            transform-style: preserve-3d;
            /*transform: perspective(800px) rotateY(-60deg) translateX(30px);*/
            transform: perspective(800px) rotateY(-60deg) rotateX(30deg);
            transition: all 5s ease;
        }
        #box div{
            width: 100%;
            height: 100%;
            position: absolute;
            line-height: 200px;
            text-align: center;
            color: #fff;
            font-size: 40px;
            opacity: 0.7;
        }
        #box .box1{
            background: red;
            transform: translateZ(100px);
        }
        #box .box2{
            background: green;
            transform: translateZ(-100px);
        }
        #box .box3{
            background: blue;
            transform: translateX(-100px) rotateY(90deg);
        }
        #box .box4{
            background: yellow;
            transform: translateY(-100px) rotateX(90deg);
        }
        #box .box5{
            background: pink;
            transform: translateY(100px) rotateX(90deg);
        }
        #box .box6{
            background: deepskyblue;
            transform: translateX(100px) rotateY(90deg);
        }
        #box:active{
            /*transform: perspective(800px) rotateY(-360deg) translateX(360px) ;*/
            transform: perspective(400px) rotateY(-3600deg) rotateX(3600deg) ;
        }
    </style>
</head>
<body>
<div id="box">
    <div class="box1">1</div>
    <div class="box2">2</div>
    <div class="box3">3</div>
    <div class="box4">4</div>
    <div class="box5">5</div>
    <div class="box6">6</div>
</div>
</body>
</html>

 

三维立体

标签:res   body   eps   分享   lis   pos   log   list   html   

原文地址:http://www.cnblogs.com/wangqiniqn/p/6247044.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!