按下右側的「點擊預覽」按鈕能夠在當前頁面預覽,點擊連接能夠全屏預覽。javascript
https://codepen.io/comehope/pen/vavZPxcss
此視頻是能夠交互的,你能夠隨時暫停視頻,編輯視頻中的代碼。html
請用 chrome, safari, edge 打開觀看。前端
https://scrimba.com/p/pEgDAM/c3q6LH7java
每日前端實戰系列的所有源代碼請從 github 下載:git
https://github.com/comehope/front-end-daily-challengesgithub
定義 dom,容器中包含 3 個元素,表明 3 條擺線:chrome
<div class="pendulums"> <span></span> <span></span> <span></span> </div>
居中顯示:app
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(lightyellow, burlywood); }
定義容器的尺寸,並畫出固定擺線示意牆:dom
.pendulums { width: 40em; height: 30em; font-size: 10px; border-top: 0.3em solid cadetblue; }
畫出一條擺線:
.pendulums { position: relative; } .pendulums span { position: absolute; width: 0.2em; height: 15em; background-color: cadetblue; left: 50%; }
用僞元素畫出擺線底部懸掛的小球:
.pendulums span::before { content: ''; position: absolute; width: 1.5em; height: 1.5em; background: steelblue; border-radius: 50%; top: 100%; left: -0.75em; }
用徑向漸變爲小球增長光影:
.pendulums span::before { background: radial-gradient( circle at 70% 35%, white, darkturquoise 30%, steelblue 50% ); }
用僞元素畫出小球的陰影:
.pendulums span::after { content: ''; position: absolute; width: 2em; height: 0.3em; background-color: rgba(0, 0, 0, 0.2); top: 120%; left: -1em; filter: blur(0.4em); }
以擺線的頂點爲原點,將擺線向左旋轉:
.pendulums span { transform-origin: 50% top; transform: rotate(25deg); }
讓擺線擺動起來:
.pendulums span { animation: swing ease-in-out infinite; animation-duration: 1.5s; } @keyframes swing { 50% { transform: rotate(-25deg); } }
爲每條擺線定義下標變量:
.pendulums span:nth-child(1) { --n: 1; } .pendulums span:nth-child(2) { --n: 2; } .pendulums span:nth-child(3) { --n: 3; }
用變量設置擺線的長度,和動畫的時長,都是逐漸增大的等差數列:
.pendulums span { height: calc((var(--n) - 1) * 1em + 15em); animation-duration: calc((var(--n) - 1) * 0.02s + 1.5s); }
接下來用 d3 來批量處理 dom 元素和 css 變量:
引入 d3 庫:
<script src="https://d3js.org/d3.v5.min.js"></script>
用 d3 建立擺線的 dom 元素:
const COUNT = 3; d3.select('.pendulums') .selectAll('span') .data(d3.range(COUNT)) .enter() .append('span')
用 d3 定義擺線的下標變量:
d3.select('.pendulums') .selectAll('span') .data(d3.range(COUNT)) .enter() .append('span') .style('--n', (d) => d + 1);
刪除掉 html 文件中相關的 dom 定義和 css 文件中的變量定義。
最後,把擺線的數量調整爲 15 個。
const COUNT = 15;
大功告成!