CSS3多面體3D運動效果
分享一段程式碼例項,它實現了多面體立體運動效果。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> body { background: black; } .container { width: 200px; height: 173.2px; position: relative; margin: 200px auto; transform-style: preserve-3d; } .container div { width: 200px; height: 173.2px; position: absolute; clip-path: polygon(50% 0,100% 100%,0 100%); } .container div:nth-child(1) { transform: rotateX(-70.5deg); transform-origin: 0 100%; } .container div:nth-child(2) { transform: rotate3d(100, -173.2, 0, 70.5deg); transform-origin: 0 100%; } .container div:nth-child(3) { transform: rotate3d(-100, -173.2, 0, -70.5deg); transform-origin: 100% 100%; } .container div:nth-child(1) { background: rgba(255,0,0,0.9); } .container div:nth-child(2) { background: rgba(0,255,0,0.9); } .container div:nth-child(3) { background: rgba(0,0,255,0.9); } .container div:nth-child(4) { background: rgba(0,255,255,0.9); } @keyframes rotate { from { transform: rotate3d(1,1,1,0); } to { transform: rotate3d(1,1,1,360deg); } } .container { animation: rotate 5s linear infinite; } </style> </head> <body> <div class="container"> <div></div> <div></div> <div></div> <div></div> </div> </body> </html>
相關文章
- CSS3多面體旋轉效果CSSS3
- CSS3 div水平運動效果CSSS3
- CSS3立方體3D旋轉效果CSSS33D
- CSS3星系運動效果程式碼例項CSSS3
- CSS3實現3D魔方效果CSSS33D
- CSS3實現3D翻牌效果CSSS33D
- CSS3動畫實現3D倒數計時效果CSSS3動畫3D
- css3 3D 深度翻轉效果案例CSSS33D
- CSS3實現3d效果照片牆CSSS33D
- CSS3 3D方塊效果程式碼CSSS33D
- CSS3具有3D立體效果的數字分頁CSSS33D
- css3帶你實現3D轉換效果CSSS33D
- css3小球上下移動效果CSSS3
- CSS3動畫按鈕效果CSSS3動畫
- css3動畫效果抖動解決CSSS3動畫
- CSS3動畫效果下拉導航選單效果CSSS3動畫
- CSS3 文字立體凸起效果CSSS3
- CSS3 3D立體按鈕CSSS33D
- css3動畫完成打字機效果CSSS3動畫
- CSS3動態月食效果詳解CSSS3
- CSS3 loadding載入動畫效果CSSS3動畫
- CSS3滾動條效果程式碼CSSS3
- CSS3載入等待動畫效果CSSS3動畫
- CSS3跳動的紅心效果CSSS3
- css3氣泡動態上升效果CSSS3
- CSS3動態餅狀圖效果CSSS3
- CSS3圖片上下動畫浮動效果CSSS3動畫
- css3實現動畫閃爍效果CSSS3動畫
- css3晃動效果程式碼例項CSSS3
- CSS3水滴向下滴落動畫效果CSSS3動畫
- CSS3滑動開關按鈕效果CSSS3
- CSS3邊框動態環繞效果CSSS3
- CSS3象棋效果CSSS3
- 簡單的css3頭像旋轉與3D旋轉效果CSSS33D
- CSS3滑鼠懸浮動畫按鈕效果CSSS3動畫
- CSS3文字動態填充背景效果CSSS3
- CSS3連結<a>滑鼠懸浮動畫效果CSSS3動畫
- CSS3滑鼠懸浮圖片閃動效果CSSS3