首页 > 其他分享 >图片魔方

图片魔方

时间:2023-03-18 14:34:43浏览次数:29  
标签:cube translateZ 魔方 100px transform rotateY out 图片

add

图片魔方效果css

<style>
     html {
         background: pink;
         height: 100%;
     }
 
     /*最外层容器样式*/
    .wrap {
        width: 100px;
        height: 100px;
        margin: 150px;
        position: fixed;
        opacity: 0.6;
        z-index: 9999999999999999999999999999999999999999;
    }
 
     /*包裹所有容器样式*/
     .cube {
         width: 50px;
         height: 50px;
         margin: 0 auto;
         transform-style: preserve-3d;
         transform: rotateX(-30deg) rotateY(-80deg);
         -webkit-animation: rotate 20s infinite;
         /*匀速*/
         animation-timing-function: linear;
     }
 
     @-webkit-keyframes rotate {
         from {
             transform: rotateX(0deg) rotateY(0deg);
         }
 
         to {
             transform: rotateX(360deg) rotateY(360deg);
         }
     }
 
     .cube div {
         position: absolute;
         width: 200px;
         height: 200px;
         opacity: 0.8;
         transition: all .4s;
     }
 
     /*定义所有图片样式*/
     .pic {
         width: 200px;
         height: 200px;
     }
 
      .cube .out_front {
           transform: rotateY(0deg) translateZ(100px);
      }

       .cube .out_back {
           transform: translateZ(-100px) rotateY(180deg);
      }

       .cube .out_left {
           transform: rotateY(-90deg) translateZ(100px);
      }

       .cube .out_right {
           transform: rotateY(90deg) translateZ(100px);
      }

       .cube .out_top {
           transform: rotateX(90deg) translateZ(100px);
      }

       .cube .out_bottom {
           transform: rotateX(-90deg) translateZ(100px);
      }
 
     /*定义小正方体样式*/
     .cube span {
         display: bloack;
         width: 100px;
         height: 100px;
         position: absolute;
         top: 50px;
         left: 50px;
     }
 
     .cube .in_pic {
         width: 100px;
         height: 100px;
     }
 
     .cube .in_front {
           transform: rotateY(0deg) translateZ(50px);
      }

       .cube .in_back {
           transform: translateZ(-50px) rotateY(180deg);
      }

       .cube .in_left {
           transform: rotateY(-90deg) translateZ(50px);
      }

       .cube .in_right {
           transform: rotateY(90deg) translateZ(50px);
      }

       .cube .in_top {
           transform: rotateX(90deg) translateZ(50px);
      }

       .cube .in_bottom {
           transform: rotateX(-90deg) translateZ(50px);
      }
 
     /*鼠标移入后样式*/
       .cube:hover .out_front {
           transform: rotateY(0deg) translateZ(200px);
      }

       .cube:hover .out_back {
           transform: translateZ(-200px) rotateY(180deg);
      }

       .cube:hover .out_left {
           transform: rotateY(-90deg) translateZ(200px);
      }

       .cube:hover .out_right {
           transform: rotateY(90deg) translateZ(200px);
      }

       .cube:hover .out_top {
           transform: rotateX(90deg) translateZ(200px);
      }

       .cube:hover .out_bottom {
           transform: rotateX(-90deg) translateZ(200px);
      }
 </style>
图片魔方页首

 <!--图片魔方-->
<div class="wrap">
     <!-- /*包裹所有元素的容器*/-->
     <div class="cube">
         <!--前面图片 -->
         <div class="out_front">
             <img src="https://images.cnblogs.com/cnblogs_com/blogs/773035/galleries/2233677/o_221026030726_20200613000836_drald.jpeg" class="pic">
         </div>
         <!--后面图片 -->
         <div class="out_back">
             <img src="https://images.cnblogs.com/cnblogs_com/blogs/773035/galleries/2233677/o_221026030726_20200613000836_drald.jpeg" class="pic">
         </div>
         <!--左图片 -->
         <div class="out_left">
             <img src="https://images.cnblogs.com/cnblogs_com/blogs/773035/galleries/2233677/o_221026030726_20200613000836_drald.jpeg" class="pic">
         </div>
         <div class="out_right">
             <img src="https://images.cnblogs.com/cnblogs_com/blogs/773035/galleries/2235898/o_3b9f53f5.jpeg" class="pic">
         </div>
         <div class="out_top">
             <img src="https://images.cnblogs.com/cnblogs_com/blogs/773035/galleries/2235898/o_cc2f8bf9.jpeg" class="pic">
         </div>
         <div class="out_bottom">
             <img src="https://images.cnblogs.com/cnblogs_com/blogs/773035/galleries/2235898/o_cc2f8bf9.jpeg" class="pic">
         </div>
         
         <!--小正方体 -->
         <span class="in_front">
             <img src="https://images.cnblogs.com/cnblogs_com/blogs/773035/galleries/2235898/o_cc2f8bf9.jpeg" class="in_pic" />
         </span>
         <span class="in_back">
             <img src="https://images.cnblogs.com/cnblogs_com/blogs/773035/galleries/2235898/o_3b9f53f5.jpeg" class="in_pic" />
         </span>
         <span class="in_left">
             <img src="https://images.cnblogs.com/cnblogs_com/blogs/773035/galleries/2235898/o_991fdc50.jpeg" class="in_pic" />
         </span>
         <span class="in_right">
             <img src="https://images.cnblogs.com/cnblogs_com/blogs/773035/galleries/2233677/o_221026030726_20200613000836_drald.jpeg" class="in_pic" />
         </span>
         <span class="in_top">
             <img src="https://images.cnblogs.com/cnblogs_com/blogs/773035/galleries/2235898/o_991fdc50.jpeg" class="in_pic" />
         </span>
         <span class="in_bottom">
             <img src="https://images.cnblogs.com/cnblogs_com/blogs/773035/galleries/2235898/o_3b9f53f5.jpeg" class="in_pic" />
         </span>
     </div>
 </div>

标签:cube,translateZ,魔方,100px,transform,rotateY,out,图片
From: https://www.cnblogs.com/windymoon/p/17230565.html

相关文章