Web前端实现3D旋转魔方相册【超详细】

简介: Web前端实现3D旋转魔方相册【超详细】

前言

例如:3D旋转魔方相册,表白神器!

3D旋转魔方效果图


提示:以下是本篇文章正文内容,下面案例可供参考

一、html代码

<!DOCTYPE html>
<html>
  <head lang="en">
    <meta charset="UTF-8">
    <link type="text/css" href="YoungerSister.css" rel="stylesheet ">
    <title>YoungerSister</title>
    <style>
      <pre name="code"class="css">* {
        padding: 0;
        margin: 0;
      }
      body {
        width: 100%;
        height: 100%;
        background: #333;
      }
      #react {
        width: 400px;
        height: 400px;
        margin: 400px auto;
        transform-style: preserve-3d;
        animation: rotate 20s infinite;
        animation-timing-function: linear;
      }
      #react div {
        position: absolute;
        transition: all .4s;
      }
      div .out_pic {
        width: 400px;
        height: 400px;
        opacity: 0.9;
      }
      div .in_pic {
        width: 200px;
        height: 200px;
      }
      #react span {
        display: block;
        position: absolute;
        width: 200px;
        height: 200px;
        top: 50px;
        left: 50px;
      }
      @keyframes rotate {
        from {
          transform: rotateX(0deg) rotateY(0deg);
        }
        to {
          transform: rotateX(360deg) rotateY(360deg);
        }
      }
      .out_front {
        transform: translateZ(200px);
      }
      .out_back {
        transform: translateZ(-200px);
      }
      .out_left {
        transform: rotateY(90deg) translateZ(200px);
      }
      .out_right {
        transform: rotateY(-90deg) translateZ(200px);
      }
      .out_top {
        transform: rotateX(90deg) translateZ(200px);
      }
      .out_bottom {
        transform: rotateX(-90deg) translateZ(200px);
      }
      .in_front {
        transform: translateZ(50px);
      }
      .in_back {
        transform: translateZ(-50px);
      }
      .in_left {
        transform: rotateY(90deg) translateZ(50px);
      }
      .in_right {
        transform: rotateY(-90deg) translateZ(50px);
      }
      .in_top {
        transform: rotateX(90deg) translateZ(50px);
      }
      .in_bottom {
        transform: rotateX(-90deg) translateZ(50px);
      }
      /*外面的图片散开*/
      #react:hover .out_front {
        transform: translateZ(400px);
      }
      #react:hover .out_back {
        transform: translateZ(-400px);
      }
      #react:hover .out_left {
        transform: rotateY(90deg) translateZ(400px);
      }
      #react:hover .out_right {
        transform: rotateY(-90deg) translateZ(400px);
      }
      #react:hover .out_top {
        transform: rotateX(90deg) translateZ(400px);
      }
      #react:hover .out_bottom {
        transform: rotateX(-90deg) translateZ(400px);
      }
      /*里面的图片散开*/
      #react:hover .in_front {
        transform: translateZ(200px);
      }
      #react:hover .in_back {
        transform: translateZ(-200px);
      }
      #react:hover .in_left {
        transform: rotateY(90deg) translateZ(200px);
      }
      #react:hover .in_right {
        transform: rotateY(-90deg) translateZ(200px);
      }
      #react:hover .in_top {
        transform: rotateX(90deg) translateZ(200px);
      }
      #react:hover .in_bottom {
        transform: rotateX(-90deg) translateZ(200px);
      }
    </style>
  </head>
  <body>
    <div id="react">
      <div class="out_front">
        <img src="001.jpg" class="out_pic">
      </div>
      <div class="out_back">
        <img src="002.jpg" class="out_pic">
      </div>
      <div class="out_left">
        <img src="003.jpg" class="out_pic">
      </div>
      <div class="out_right">
        <img src="004.jpg" class="out_pic">
      </div>
      <div class="out_top">
        <img src="005.jpg" class="out_pic">
      </div>
      <div class="out_bottom">
        <img src="006.jpg" class="out_pic">
      </div>
      <span class="in_front">
        <img src="007.jpg" class="in_pic">
      </span>
      <span class="in_back">
        <img src="008.jpg" class="in_pic">
      </span>
      <span class="in_left">
        <img src="009.jpg" class="in_pic">
      </span>
      <span class="in_right">
        <img src="010.jpg" class="in_pic">
      </span>
      <span class="in_top">
        <img src="011.jpg" class="in_pic">
      </span>
      <span class="in_bottom">
        <img src="012.jpg" class="in_pic">
      </span>
    </div>
  </body>
</html>

二、css代码

*{
    margin:0;
    padding: 0;
}
body{
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    background-color: #57faff;
}
li{
    list-style: none;
}
.box{
    width: 200px;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    position: absolute;
    margin-left: 42%;
    margin-right: 22%;
    -webkit-transform-style:preserve-3d;
    -webkit-transform:rotateX(13deg);
    -webkit-animation:move 5s linear infinite;
}
.minbox{
    width: 100px;
    height: 100px;
    position: absolute;
    left:50px;
    top:30px;
    -webkit-transform-style:preserve-3d;
}
.minbox li{
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0;
    top:0;
}
.minbox li:nth-child(1){
    background: url(../img/01.png) no-repeat 0 0;
    -webkit-transform:translateZ(50px);
}
.minbox li:nth-child(2){
    background: url(../img/02.png) no-repeat 0 0;
    -webkit-transform:rotateX(180deg) translateZ(50px);
}
.minbox li:nth-child(3){
    background: url(../img/03.png) no-repeat 0 0;
    -webkit-transform:rotateX(-90deg) translateZ(50px);
}
.minbox li:nth-child(4){
    background: url(../img/04.png) no-repeat 0 0;
    -webkit-transform:rotateX(90deg) translateZ(50px);
}
.minbox li:nth-child(5){
    background: url(../img/05.png) no-repeat 0 0;
    -webkit-transform:rotateY(-90deg) translateZ(50px);
}
.minbox li:nth-child(6){
    background: url(../img/06.png) no-repeat 0 0;
    -webkit-transform:rotateY(90deg) translateZ(50px);
}
.maxbox li:nth-child(1){
    background: url(../img/1.png) no-repeat 0 0;
    -webkit-transform:translateZ(50px);
}
.maxbox li:nth-child(2){
    background: url(../img/2.png) no-repeat 0 0;
    -webkit-transform:rotateX(180deg) translateZ(50px);
}
.maxbox li:nth-child(3){
    background: url(../img/3.png) no-repeat 0 0;
    -webkit-transform:rotateX(-90deg) translateZ(50px);
}
.maxbox li:nth-child(4){
    background: url(../img/4.png) no-repeat 0 0;
    -webkit-transform:rotateX(90deg) translateZ(50px);
}
.maxbox li:nth-child(5){
    background: url(../img/5.png) no-repeat 0 0;
    -webkit-transform:rotateY(-90deg) translateZ(50px);
}
.maxbox li:nth-child(6){
    background: url(../img/6.png) no-repeat 0 0;
    -webkit-transform:rotateY(90deg) translateZ(50px);
}
.maxbox{
    width: 800px;
    height: 400px;
    position: absolute;
    left: 0;
    top:-20px;
    -webkit-transform-style:preserve-3d;
}
.maxbox li{
    width: 200px;
    height: 200px;
    background: #fff;
    border: 1px solid #ccc;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.2;
    -webkit-transition:all 1s ease;
}
.maxbox li:nth-child(1){
    -webkit-transform:translateZ(100px);
}
.maxbox li:nth-child(2){
    -webkit-transform:rotateX(180deg) translateZ(100px);
}
.maxbox li:nth-child(3){
    -webkit-transform:rotateX(-90deg) translateZ(100px);
}
.maxbox li:nth-child(4){
    -webkit-transform:rotateX(90deg) translateZ(100px);
}
.maxbox li:nth-child(5){
    -webkit-transform:rotateY(-90deg) translateZ(100px);
}
.maxbox li:nth-child(6){
    -webkit-transform:rotateY(90deg) translateZ(100px);
}
.box:hover ol li:nth-child(1){
    -webkit-transform:translateZ(300px);
    width: 400px;
    height: 400px;
    opacity: 0.8;
    left: -100px;
    top:-100px;
}
.box:hover ol li:nth-child(2){
    -webkit-transform:rotateX(180deg) translateZ(300px);
    width: 400px;
    height: 400px;
    opacity: 0.8;
    left: -100px;
    top:-100px;
}
.box:hover ol li:nth-child(3){
    -webkit-transform:rotateX(-90deg) translateZ(300px);
    width: 400px;
    height: 400px;
    opacity: 0.8;
    left: -100px;
    top:-100px;
}
.box:hover ol li:nth-child(4){
    -webkit-transform:rotateX(90deg) translateZ(300px);
    width: 400px;
    height: 400px;
    opacity: 0.8;
    left: -100px;
    top:-100px;
}
.box:hover ol li:nth-child(5){
    -webkit-transform:rotateY(-90deg) translateZ(300px);
    width: 400px;
    height: 400px;
    opacity: 0.8;
    left: -100px;
    top:-100px;
}
.box:hover ol li:nth-child(6){
    -webkit-transform:rotateY(90deg) translateZ(300px);
    width: 400px;
    height: 400px;
    opacity: 0.8;
    left: -100px;
    top:-100px;
}
@keyframes move{
    0%{
        -webkit-transform:rotateX(13deg) rotateY(0deg);
    }
    100%{
        -webkit-transform:rotateX(13deg) rotateY(360deg);
    }
}


三、放上照片

3bb72f77289140c287fd9c45d07443f6.png

提示:照片和html、css文件放在一个文件夹。


目录
相关文章
|
18天前
|
前端开发 JavaScript 安全
前端性能调优:HTTP/2与HTTPS在Web加速中的应用
【10月更文挑战第27天】本文介绍了HTTP/2和HTTPS在前端性能调优中的应用。通过多路复用、服务器推送和头部压缩等特性,HTTP/2显著提升了Web性能。同时,HTTPS确保了数据传输的安全性。文章提供了示例代码,展示了如何使用Node.js创建一个HTTP/2服务器。
31 3
|
14天前
|
监控 前端开发 JavaScript
探索微前端架构:构建可扩展的现代Web应用
【10月更文挑战第29天】本文探讨了微前端架构的核心概念、优势及实施策略,通过将大型前端应用拆分为多个独立的微应用,提高开发效率、增强可维护性,并支持灵活的技术选型。实际案例包括Spotify和Zalando的成功应用。
|
18天前
|
前端开发 JavaScript
Bootstrap Web 前端 UI 框架
Bootstrap 是快速开发 Web 应用程序的前端工具包。
30 3
|
19天前
|
前端开发 安全 应用服务中间件
前端性能调优:HTTP/2与HTTPS在Web加速中的应用
【10月更文挑战第26天】随着互联网的快速发展,前端性能调优成为开发者的重要任务。本文探讨了HTTP/2与HTTPS在前端性能优化中的应用,介绍了二进制分帧、多路复用和服务器推送等特性,并通过Nginx配置示例展示了如何启用HTTP/2和HTTPS,以提升Web应用的性能和安全性。
17 3
|
19天前
|
前端开发 JavaScript API
前端框架新探索:Svelte在构建高性能Web应用中的优势
【10月更文挑战第26天】近年来,前端技术飞速发展,Svelte凭借独特的编译时优化和简洁的API设计,成为构建高性能Web应用的优选。本文介绍Svelte的特点和优势,包括编译而非虚拟DOM、组件化开发、状态管理及响应式更新机制,并通过示例代码展示其使用方法。
33 2
|
19天前
|
开发框架 前端开发 JavaScript
Web前端框架
Web前端框架等名词
16 2
|
30天前
|
人工智能 前端开发
2024 川渝 Web 前端开发技术交流会「互联」:等你来报名!
2024 川渝 Web 前端开发技术交流会「互联」:等你来报名!
2024 川渝 Web 前端开发技术交流会「互联」:等你来报名!
|
20天前
|
监控 前端开发 JavaScript
前端技术探索:构建高效、可维护的Web应用
【10月更文挑战第23天】前端技术探索:构建高效、可维护的Web应用
37 0
|
移动开发 前端开发 JavaScript
Web 前端开发精华文章推荐(HTML5、CSS3、jQuery)【系列二十二】
  《Web 前端开发精华文章推荐》2014年第一期(总第二十二期)和大家见面了。梦想天空博客关注 前端开发 技术,分享各类能够提升网站用户体验的优秀 jQuery 插件,展示前沿的 HTML5 和 CSS3 技术应用,推荐优秀的 网页设计 案例,共享精美的设计素材和优秀的 Web 开发工具,希望这些精心整理的前端技术文章能够帮助到您。
7635 0
|
1月前
|
XML JSON API
ServiceStack:不仅仅是一个高性能Web API和微服务框架,更是一站式解决方案——深入解析其多协议支持及简便开发流程,带您体验前所未有的.NET开发效率革命
【10月更文挑战第9天】ServiceStack 是一个高性能的 Web API 和微服务框架,支持 JSON、XML、CSV 等多种数据格式。它简化了 .NET 应用的开发流程,提供了直观的 RESTful 服务构建方式。ServiceStack 支持高并发请求和复杂业务逻辑,安装简单,通过 NuGet 包管理器即可快速集成。示例代码展示了如何创建一个返回当前日期的简单服务,包括定义请求和响应 DTO、实现服务逻辑、配置路由和宿主。ServiceStack 还支持 WebSocket、SignalR 等实时通信协议,具备自动验证、自动过滤器等丰富功能,适合快速搭建高性能、可扩展的服务端应用。
101 3