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文件放在一个文件夹。


目录
相关文章
|
21天前
|
前端开发 JavaScript 安全
前端性能调优:HTTP/2与HTTPS在Web加速中的应用
【10月更文挑战第27天】本文介绍了HTTP/2和HTTPS在前端性能调优中的应用。通过多路复用、服务器推送和头部压缩等特性,HTTP/2显著提升了Web性能。同时,HTTPS确保了数据传输的安全性。文章提供了示例代码,展示了如何使用Node.js创建一个HTTP/2服务器。
37 3
|
7天前
|
消息中间件 前端开发 JavaScript
探索微前端架构:构建现代Web应用的新策略
本文探讨了微前端架构的概念、优势及实施策略,旨在解决传统单体应用难以快速迭代和团队协作的问题。微前端允许不同团队独立开发、部署应用的各部分,提升灵活性与可维护性。文中还讨论了技术栈灵活性、独立部署、团队自治等优势,并提出了定义清晰接口、使用Web组件、状态管理和样式隔离等实施策略。
|
18天前
|
监控 前端开发 JavaScript
探索微前端架构:构建可扩展的现代Web应用
【10月更文挑战第29天】本文探讨了微前端架构的核心概念、优势及实施策略,通过将大型前端应用拆分为多个独立的微应用,提高开发效率、增强可维护性,并支持灵活的技术选型。实际案例包括Spotify和Zalando的成功应用。
|
22天前
|
前端开发 安全 应用服务中间件
前端性能调优:HTTP/2与HTTPS在Web加速中的应用
【10月更文挑战第26天】随着互联网的快速发展,前端性能调优成为开发者的重要任务。本文探讨了HTTP/2与HTTPS在前端性能优化中的应用,介绍了二进制分帧、多路复用和服务器推送等特性,并通过Nginx配置示例展示了如何启用HTTP/2和HTTPS,以提升Web应用的性能和安全性。
24 3
|
22天前
|
前端开发 JavaScript API
前端框架新探索:Svelte在构建高性能Web应用中的优势
【10月更文挑战第26天】近年来,前端技术飞速发展,Svelte凭借独特的编译时优化和简洁的API设计,成为构建高性能Web应用的优选。本文介绍Svelte的特点和优势,包括编译而非虚拟DOM、组件化开发、状态管理及响应式更新机制,并通过示例代码展示其使用方法。
36 2
|
1月前
|
人工智能 前端开发
2024 川渝 Web 前端开发技术交流会「互联」:等你来报名!
2024 川渝 Web 前端开发技术交流会「互联」:等你来报名!
2024 川渝 Web 前端开发技术交流会「互联」:等你来报名!
|
1月前
|
存储 前端开发 JavaScript
从 Web 2.0 到 Web 3.0:前端开发的历史与未来
【10月更文挑战第4天】本文探讨了从 Web 2.0 到 Web 3.0 的前端开发演变过程。Web 2.0 时代,前端开发者从静态网页设计走向复杂交互,技术框架如 jQuery、React 和 Vue 带来了巨大的变革。而 Web 3.0 以区块链技术为核心,带来了去中心化的互联网体验,前端开发者面临与区块链交互、去中心化身份验证、分布式存储等新挑战。文章总结了 Web 2.0 和 Web 3.0 的核心区别,并为开发者提供了如何应对新技术的建议,帮助他们在新时代中掌握技能、设计更安全的用户体验。
55 0
从 Web 2.0 到 Web 3.0:前端开发的历史与未来
|
23天前
|
监控 前端开发 JavaScript
前端技术探索:构建高效、可维护的Web应用
【10月更文挑战第23天】前端技术探索:构建高效、可维护的Web应用
38 0
|
1月前
|
存储 人工智能 前端开发
前端大模型应用笔记(三):Vue3+Antdv+transformers+本地模型实现浏览器端侧增强搜索
本文介绍了一个纯前端实现的增强列表搜索应用,通过使用Transformer模型,实现了更智能的搜索功能,如使用“番茄”可以搜索到“西红柿”。项目基于Vue3和Ant Design Vue,使用了Xenova的bge-base-zh-v1.5模型。文章详细介绍了从环境搭建、数据准备到具体实现的全过程,并展示了实际效果和待改进点。
135 2
|
1月前
|
JavaScript 前端开发 程序员
前端学习笔记——node.js
前端学习笔记——node.js
43 0
下一篇
无影云桌面