CSS3D動畫製作一個3d旋轉的篩子

来源:http://www.cnblogs.com/mengwake/archive/2017/05/19/6878604.html
-Advertisement-
Play Games

希望這個demo能讓大家理解CSS3的3d空間動畫(其實是個假3D) 首先給一個3d的解剖圖,x/y/z軸線軸線已經標出 下麵附上添加特效的動畫旋轉 可以根據demo並參考上面解剖圖進行理解 ...


希望這個demo能讓大家理解CSS3的3d空間動畫(其實是個假3D)

首先給一個3d的解剖圖,x/y/z軸線軸線已經標出

 

下麵附上添加特效的動畫旋轉

可以根據demo並參考上面解剖圖進行理解

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        html{
            height: 100%;
        }
        body{
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: black;
            perspective: 1000px;
            transform-style: preserve-3d;
            
        }
        section{
            width: 300px;
            height: 300px;
            transform-style: preserve-3d;
            animation: zhuan 16s infinite linear;
            
        }
        div{
            width: 300px;
            height: 300px;
            background-color: orange;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            position: absolute;   
            box-shadow: 0 0 300px green;
            opacity: 0.8;  
        }
        div:nth-child(1){
            transform: translateZ(300px);
            border-radius: 50%;
            box-shadow: 0 0 500px orange;
            opacity: 0.4;
        }
        div:nth-child(2){
            transform: rotateX(90deg) translateZ(300px);
            align-items: center;
            justify-content: space-around;
            flex-direction: column;
            border-radius: 50%;
            box-shadow: 0 0 500px orange;
            opacity: 0.4;
        }
        div:nth-child(3){
            transform: rotateY(90deg) translateZ(300px);
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: center;
            border-radius: 50%;
            box-shadow: 0 0 500px orange;
            opacity: 0.4;
        }
        div:nth-child(3) p:nth-child(2){
            align-self: center;
        }
        div:nth-child(3) p:nth-child(3){
            align-self: flex-end;
        }
        div:nth-child(4){
            transform: translateZ(-300px);
            flex-wrap: wrap;
            border-radius: 50%;
            box-shadow: 0 0 500px orange;
            opacity: 0.4;
        }
        div:nth-child(5){
            transform: rotateX(90deg) translateZ(-300px);
            border-radius: 50%;
            box-shadow: 0 0 500px orange;
            opacity: 0.4;
        }
        div:nth-child(6){
            transform: rotateY(90deg) translateZ(-300px);
            border-radius: 50%;
            box-shadow: 0 0 500px orange;
            opacity: 0.4;
        }
        .low{
            width: 300px;
            height: 150px;
            display: flex;
        }
        .low:nth-child(1){
            align-items: flex-end;
            justify-content: center; 
        }
        .low:nth-child(2){
            align-items: flex-start;
            justify-content: center;
        }
        .stree{
            width: 300px;
            height: 33.33%;
            display: flex;
        }
        .stree:nth-child(1){
            justify-content: space-around;
        }
        .stree:nth-child(2){
            justify-content: center;
        }
        .stree:nth-child(3){
            justify-content: space-around;
        }
        .fore{           
            width: 300px;
            height: 33.33%;
            display: flex;
        }
        .fore:nth-child(1){
            justify-content: center;
        }
        .fore:nth-child(3){
            justify-content: center;
        }
        p{
            width: 60px;
            height: 60px;
            background-color: white;
            border-radius: 50%;
            box-shadow: 200 60 400px #ccc;
            opacity: 0.7;
            margin: 10px;
            
        }
        @keyframes zhuan{
            0%{
                transform: rotateX(0deg) rotateY(0deg);
            }
            100%{
                transform: rotateX(360deg) rotateY(360deg) ;
            }
        }
      
    </style>
</head>
<body>  
    <section>
        <div>
            <p></p>
        </div>
        <div>
            <p></p>
            <p></p>
        </div>
        <div>
            <p></p>
            <p></p>
            <p></p>
        </div>
        <div>
        <main class="low">
            <p></p>
            <p></p>
        </main>
        <main class="low">    
            <p></p>
            <p></p>
        </main>
        </div>
        <div>
        <main class="stree">
            <p></p>
            <p></p>
        </main>
        <main class="stree">    
            <p></p>
        </main>
        <main class="stree">
            <p></p>
            <p></p>
        </main>
        </div>
        <div>
            <main class="fore">
            <p></p>
                <p></p>
            </main>
            <main class="stree">    
                <p></p>
                <p></p>
            </main>
            <main class="fore">
                <p></p>
                <p></p>
            </main>
        </div>      
    </section>
</body>
</html>

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一、 基本概述 1:現實中存在三角插頭適配成雙插頭,等其他各種形式的適配器來連接不相容的兩個物體。同理在代碼中也存在適配器模式來相容兩個不同的代碼介面。 2:KTV包間打開一個啟動開關,就打開party模式(音響、屏幕、燈光、換氣、點歌台等),一個簡單的開關來控制其他更多的任務。同理在代碼中也存在外 ...
  • 個人的理解,有什麼不正確的請指教,共同學習 //stur不包含prototype屬性 由上面的原型組成的鏈狀結構叫原型鏈 ...
  • 最近突然來了興緻研究react,在研究react的JSX語法,組件時,覺得沒有什麼問題,都挺好理解的,但是看到生命周期這一部分時,發現官網給出的聲明周期事件有一個怎麼都不能主動觸發到,後來在網上查了查,網上都只給出了聲明周期的概念,沒有人去真正測試過如何觸發React組件的銷毀。 於是只能自己動手, ...
  • 1.正則去空字元串; var str1=" a b c "; var strtrim=str1.replace(/\s/g,"");2.js去前後空字元串; var strtrim=str1.trim();3.jQuery去前後空字元串; var strtrim= $.trim(str1); ...
  • 方式一 手工收集所有的用戶輸入,封裝為大的“k1=v1&k2=v2…”鍵值對形式,使用$.post(url, data,fn)把數據提交給伺服器 方式二 方式三 使用jQuery Form插件提供的ajaxSubmit()函數 轉載:http://blog.csdn.net/NextStand/ar ...
  • HTML部分: <!DOCTYPE html><html> <head> <title></title> <meta charset="utf-8" /> <link rel="stylesheet" href="css/moveCss.css" /> </head> <body> <nav id= ...
  • 1.移動端最小設置字體為12px,如果想要更小字體效果: -webkit-transform:scale(0.9); 2.文字超過兩行時,末尾顯示點點的效果: overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box ...
  • qGrid 是一個用來顯示網格數據的jQuery插件,通過使用jqGrid可以輕鬆實現前端頁面與後臺數據的ajax非同步通信。文檔比較全面,其官方網址為:http://www.trirand.com。 js引入 前端html代碼 jqgrid javascript代碼 url引入的json格式如下 通 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...