使用純CSS實現(xiàn)太陽和地球和月亮運轉(zhuǎn)模型動畫的方法?這個問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
目前成都創(chuàng)新互聯(lián)已為近千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)頁空間、網(wǎng)站托管運營、企業(yè)網(wǎng)站設(shè)計、坡頭網(wǎng)站維護等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
定義dom,容器中包含 3 個元素:
居中顯示:
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background-color: black; }
定義容器尺寸:
.container { font-size: 10px; width: 40em; height: 40em; position: relative; }
畫出太陽:
.sun { position: absolute; top: 15em; left: 15em; width: 10em; height: 10em; background-color: yellow; border-radius: 50%; box-shadow: 0 0 3em white; }
畫出地球和月球的軌跡:
.earth, .moon { position: absolute; border-style: solid; border-color: white transparent transparent transparent; border-width: 0.1em 0.1em 0 0; border-radius: 50%; } .earth { top: 5em; left: 5em; width: 30em; height: 30em; } .moon { top:0; right: 0; width: 8em; height: 8em; }
用偽元素畫出地球和月球:
.earth::before, .moon::before { position: absolute; border-radius: 50% ; content: ''; } .earth::before { top: 2.8em; right: 2.5em; height: 3em; width: 3em; background-color: aqua; } .moon::before { top: 0.8em; right: 0.2em; width: 1.2em; height: 1.2em; background-color: silver; }
設(shè)置運轉(zhuǎn)動畫效果:
/* rotation period 365.2422 days */ .earth { animation: orbit 36.5s linear infinite; } /* rotation period 27.322 days */ .moon { animation: orbit 2.7s linear infinite; } @keyframes orbit { to { transform: rotate(360deg); } }
最后,隱藏可能會出現(xiàn)在容器外的部分:
body { overflow: hidden; }
感謝各位的閱讀!看完上述內(nèi)容,你們對使用純CSS實現(xiàn)太陽和地球和月亮運轉(zhuǎn)模型動畫的方法大概了解了嗎?希望文章內(nèi)容對大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。