按下右側的「點擊預覽」按鈕能夠在當前頁面預覽,點擊連接能夠全屏預覽。
https://codepen.io/comehope/pen/oyJvpecss
此視頻是能夠交互的,你能夠隨時暫停視頻,編輯視頻中的代碼。html
請用 chrome, safari, edge 打開觀看。
https://scrimba.com/p/pEgDAM/cqwpQh7前端
每日前端實戰系列的所有源代碼請從 github 下載:
https://github.com/comehope/front-end-daily-challengesgit
定義 dom,容器中包含一個子元素,子元素內是文字:github
<div class="loader"> <span>Loading...</span> </div>
居中顯示:chrome
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background-color: black; }
定義容器尺寸:dom
.loader { width: 10em; height: 10em; font-size: 30px; box-sizing: border-box; }
設置文字樣式:flex
.loader span { position: absolute; color: white; width: inherit; height: inherit; text-align: center; line-height: 10em; font-family: sans-serif; }
畫出組成圓的頂部弧線:動畫
.loader { border-top: 0.3em solid hotpink; border-radius: 50%; }
用僞元素畫出組成圓的另外 2 條弧線:spa
.loader { position: relative; } .loader::before, .loader::after { content: ''; position: absolute; width: inherit; height: inherit; border-radius: 50%; box-sizing: border-box; top: -0.2em; } .loader::before { border-top: 0.3em solid dodgerblue; transform: rotate(120deg); } .loader::after { border-top: 0.3em solid gold; transform: rotate(240deg); }
定義動畫效果:
@keyframes rotating { 50% { transform: rotate(calc(180deg * var(--direction))); } 100% { transform: rotate(calc(360deg * var(--direction))); } }
把動畫效果應用到圓上:
.loader { animation: rotating 2s ease-in-out infinite; --direction: 1; }
把動畫效果應用到文字上:
.loader span { animation: rotating 2s linear infinite; --direction: -1; }
最後,隱藏可能超出窗口的內容:
body { overflow: hidden; }
大功告成!