CSS實現3d半透明立方體

來源:互聯網
上載者:User
這次給大家帶來CSS實現3d半透明立方體,CSS實現3d半透明立方體的注意事項有哪些,下面就是實戰案例,一起來看一下。

如下:

範例程式碼:

<html> <head> <title> new document </title> <meta name="generator" content="editplus" /> <meta name="author" content="" /> <meta name="keywords" content="" /> <meta name="description" content="" /> <meta charset="utf-8"/> <style type="text/css">//css部分html{font-size:62.5%;}img{width:300px;height:300px;} #stage{//搭建一個舞台margin-top:200px;margin-left:auto;margin-right:auto;width:300px;height:300px;perspective:1200px;font-size:5em;font-weight:bold;color:#cc00ff;} .cube{//cube是正方體position:relative;transform:rotateX(-45deg) rotateY(45deg);transform-style:preserve-3d;transition: all .6s; } .side{color:blue;text-align:center;width:300px;height:300px;line-height:300px;position:absolute;background:#cc66ff;opacity:0.5;border:1px solid rgba(117,4,24,0.5);}//.front到.bottom是6個面分別進行旋轉,構建出正方體的整形.front{transform:translateZ(150px);}.back{transform:rotateY(180deg) translateZ(150px);}.left{transform:rotateY(-90deg) translateZ(150px);}.right{transform:rotateY(90deg) translateZ(150px);}.top{transform:rotateX(90deg) translateZ(150px);}.bottom{transform:rotatex(-90deg) translateZ(150px);}#stage:hover .cube{//設定滑鼠移上正方體時是否需要過渡效果以及過渡效果開始和結束的時間和速度transform:rotateX(-45deg) rotateY(225deg);transition:transform .6s;} </style> </head><body><p id="stage"><p class="cube"><p class="side front"><img src="6.gif" alt="" /></p><p class="side back"><img src="2.jpg" alt="" /></p><p class="side left"><img src="3.jpg" alt="" /></p><p class="side right"><img src="4.jpg" alt="" /></p><p class="side top"><img src="5.jpg" alt="" /></p><p class="side bottom"><img src="1.jpg" alt="" /></p></p></p> </body></html>

相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!

推薦閱讀:

css的background-attachment進階使用方法

CSS3實現點擊放大的動畫執行個體

Bootstrap實現價格表

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.