CSS3實現旋轉光環效果的實現步驟

來源:互聯網
上載者:User
今天我們來實現一次旋轉光環的效果,我們知道很多唱片的圓盤旋轉效果都是用CSS3和JS來實現的,下面給大家做一個執行個體借鑒一下。

<div class="bg0 pa"><div></div></div><div class="hx-box pa"><ul><li class="hx-k1 pa0"><span></span></li><li class="hx-k2 pa0"><span></span></li><li class="hx-k3 pa0"><span></span></li></ul></div>2. css完整樣式html {width: 100%;height: 100%;}body {width: 100%;height: 100%;overflow: hidden;background-image: -webkit-linear-gradient(90deg, #395ecb 0%, #3657be 35%, #242161 75%, #1a0531 100%);background-image: -moz-linear-gradient(90deg, #395ecb 0%, #3657be 35%, #242161 75%, #1a0531 100%);background-image: -ms-linear-gradient(90deg, #395ecb 0%, #3657be 35%, #242161 75%, #1a0531 100%);background-image: linear-gradient(0deg, #395ecb 0%, #3657be 35%, #242161 75%, #1a0531 100%);perspective: 1000px;}.bg0 {width: 500px;height: 500px;top: 50%;left: 50%;transform: translate(-50%, -50%);background: url(../images/bg0.png) no-repeat center center;background-size: 150%;}.bg1 {width: 100%;height: 100%;background: url(../images/bg1.png) no-repeat center center;}.hx-box {top: 50%;left: 50%;width: 500px;height: 500px;transform-style: preserve-3d;transform: translate(-50%, -50%) rotateY(75deg);}.hx-box ul {width: 500px;height: 500px;transform-style: preserve-3d;animation:hxz 20s linear infinite;}@keyframes hxz{0% {transform: rotateX(0deg);}100% {transform: rotateX(-360deg);}}.hx-box ul li {width: 500px;height: 500px;border: 4px solid #5ec0ff;border-radius: 1000px;}.hx-box ul li span {display: block;width: 100%;height: 100%;background: url(../images/hx.png) no-repeat center center;background-size: 100% 100%;animation: hx 4s linear infinite;}@keyframes hx {to {transform: rotate(360deg);}}.hx-k2 {transform: rotateX(60deg) rotateZ(60deg)}.hx-k3 {transform: rotateX(-60deg) rotateZ(-60deg)}


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

相關閱讀:

Css3中transform屬性的使用教程

CSS3函數rotate()怎麼使用

CSS3動畫做出高亮光弧效果的實現步驟

相關文章

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.