您好,登錄后才能下訂單哦!
CSS 3D實現(xiàn)旋轉(zhuǎn)球的方法?這個問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
廢話不多說了,直接給大家貼代碼了,具體代碼如下所示:
<!DOCTYPE html> <html> <head> <meta charset=utf-8 /> <title>zimv-css 3d ball</title> </head> <style> body{ padding: 100px 0 0 150px; } </style> <body> <p class="wrapper"> <p class="box" id="circles"> </p> </p> <style> .wrapper{ animation: rotate 3s infinite linear alternate; transform-style: preserve-3d; width: 100px; height: 100px; margin:150px 0 0 150px; } .box{ width: 100%; height: 100%; position: relative; transform-style: preserve-3d; transform: rotateX(-30deg) rotateY(45deg); } .circle{ border-radius: 50%; width: 100%; height: 100%; position: absolute; left: 0; top: 0; border: 1px solid red; } @keyframes rotate { 0% { transform: rotateZ(0deg); } 50%{ transform: rotateZ(360deg); } 100% { transform: rotateZ(360deg) rotateX(180deg); } } </style> <script> let cir = document.getElementById('circles'); for(let i=0;i<180;i++){ let p = document.createElement('p'); p.style = `transform: rotateX(${i}deg);border: 1px solid rgba(200,200,200,1)`; p.className = 'circle'; cir.appendChild(p); } </script> </body> </html>
感謝各位的閱讀!看完上述內(nèi)容,你們對CSS 3D實現(xiàn)旋轉(zhuǎn)球的方法大概了解了嗎?希望文章內(nèi)容對大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。