码迷,mamicode.com
首页 > Web开发 > 详细

CSS3 3D环境实现立体 魔方效果代码

时间:2017-09-14 23:39:33      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:box   代码   latex   white   center   hit   otto   translate   ota   

<!DOCTYPE html>

  <html lang="en">

  <head>

     <meta charset="UTF-8">

      <title>魔方</title>

      <style type="text/css">

          section{width: 100px;height:100px;border:5px solid red; margin:50px auto;padding:100px;perspective: 800px;}

          .box {width:100px;height:100px;position:relative;

              transform-style:preserve-3d;

             transition:4S;

             transform-origin:center center -50px;

         }

         .box div{width: 100px;height:100px;position:absolute;color:white;font-size:50px;text-align: center;line-height:100px;}

         .box div:nth-of-type(1){

             background: #FF6600;;

             transform:translateX(-100px) rotateY(-90deg);

             transform-origin:right;

         }

         .box div:nth-of-type(2){

             background:red ;

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

             transform-origin:bottom ;

                  }

         .box div:nth-of-type(3){

             background:darkviolet;

             transform:translateX(100px) rotateY(90deg);

             transform-origin:left;

         }

         .box div:nth-of-type(4){

             background:yellow;

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

             transform-origin:top;

         }

         .box div:nth-of-type(5){

             background:green;

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

         }

         .box div:nth-of-type(6){

             background:blue;

         }

         section:hover .box{

             transform: rotateX(270deg) rotateY(-270deg) rotateX(-270deg) rotateY(270deg) ;

         }

     </style>

 </head>

 <body>

    <section>

         <div class="box">

             <div>1</div>

             <div>2</div>

             <div>3</div>

             <div>4</div>

             <div>5</div>

             <div>6</div>

         </div>

     </section>

 </body>

  </html>

CSS3 3D环境实现立体 魔方效果代码

标签:box   代码   latex   white   center   hit   otto   translate   ota   

原文地址:http://www.cnblogs.com/feiyu159/p/7523056.html

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