3D-旋转相册

论坛 期权论坛 脚本     
匿名技术用户   2021-1-7 02:43   19   0

之前在抖音上看到的三维旋转相册很火,身边朋友问了很多,今天搞完在这里记录一下,活不多说上代码(图片是乱找的。。)

HTML代码:

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8" />
  <title>3D-旋转相册</title>
  <link rel="stylesheet" href="css/index.css" />
 </head>
 <script type="text/javascript"> 
 function One(){
 alert("病案首页");
 }
 function Two(){
 alert("病程记录");
 }
 function Three(){
 alert("备忘录");
 } 
 function Four(){
 alert("查房引导");
 }
 function Five(){
 alert("会诊记录");
 }
 function Six(){
 alert("检验检查");
 } 
 function Seven(){
 alert("三测单");
 }
 function Eight(){
 alert("时间视图");
 }
 function Nine(){
 alert("手术记录");
 }
 function Ten(){
 alert("医嘱");
 }
 function  Eleven(){
 alert("诊断证明");
 }
 function Twelve(){
 alert("住院信息总览");
 }
 </script>
 <body>
  <!--/*外层最大容器*/-->
  <div class="wrap">
 <!-- /*包裹所有元素的容器*/-->
  <div class="cube">
   <!--前面图片 -->
   <div class="out_front">
    <img src="img2/1.jpg"  class="pic"  onclick="One()"/>
   </div>
   <!--后面图片 -->
   <div class="out_back">
    <img src="img2/2.jpg"  class="pic" onclick="Two()"/>
   </div>
   <!--左图片 -->
   <div class="out_left">
    <img src="img2/3.jpg"  class="pic" onclick="Three()"/>
   </div>
   <div class="out_right">
    <img src="img2/4.jpg"  class="pic" onclick="Four()"/>
   </div>
   <div class="out_top">
    <img src="img2/5.jpg"  class="pic" onclick="Five()"/>
   </div>
   <div class="out_bottom">
    <img src="img2/6.jpg"  class="pic" onclick="Six()"/>
   </div>
   <!--小正方体 --> 
   <span class="in_front">
    <img src="img2/7.jpg" class="in_pic"  onclick="Seven()"/>
   </span>
   <span class="in_back">
        <img src="img2/8.jpg" class="in_pic"  onclick="Eight()"/>
   </span>
   <span class="in_left">
    <img src="img2/9.jpg" class="in_pic"  onclick="Nine()"/>
   </span>
   <span class="in_right">
    <img src="img2/10.jpg" class="in_pic" onclick="Ten()"/>
   </span>
   <span class="in_top">
    <img src="img2/11.jpg" class="in_pic" onclick="Eleven()"/>
   </span>
   <span class="in_bottom">
    <img src="img2/12.jpg" class="in_pic" onclick="Twelve()"/>
   </span>
  </div>
  </div>
 </body>
</html>

CSS:

html{
 background: #000;
    height: 100%; 
}
/*最外层容器样式*/
.wrap{
 position: relative;
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 width: 200px;
 height: 200px;
 margin: auto;
 /*改变左右上下,图片方块移动*/
 
}
/*包裹所有容器样式*/
.cube{
 width: 200px;
 height: 200px;
 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);
}

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:7942463
帖子:1588486
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP