天天看點

純 CSS 創作一個太陽、地球、月亮的運轉模型

純 CSS 創作一個太陽、地球、月亮的運轉模型

效果預覽

線上示範

按下右側的“點選預覽”按鈕可以在目前頁面預覽,點選連結可以全屏預覽。

https://codepen.io/comehope/pen/RJjQYY

可互動視訊

此視訊是可以互動的,你可以随時暫停視訊,編輯視訊中的代碼。

請用 chrome, safari, edge 打開觀看。

https://scrimba.com/p/pEgDAM/cLQLyTR

源代碼下載下傳

本地下載下傳

每日前端實戰系列的全部源代碼請從 github 下載下傳:

https://github.com/comehope/front-end-daily-challenges

代碼解讀

定義dom,容器中包含 3 個元素:

<div class="container">
    <div class="sun"></div>
    <div class="earth">
        <div class="moon"></div>
    </div>
</div>
           

居中顯示:

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;
}
           

設定運轉動畫效果:

/* 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);
    }
}
           

最後,隐藏可能會出現在容器外的部分:

body {
    overflow: hidden;
}
           

大功告成!

原文位址:https://segmentfault.com/a/1190000015313341

繼續閱讀