這篇文章帶給大家的內容是關於如何使用CSS和D3實現光斑粒子交相輝映的效果(附源碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。
每日前端實戰系列的完整原始碼請從github 下載:
https://github.com/comehope/front-end-daily-challenges
定義dom,容器包含3 個子元素:
<div> <span></span> <span></span> <span></span> </div>
設定頁面背景:
body { margin: 0; width: 100vw; height: 100vh; background: radial-gradient(circle at center, #222, black 20%); }
定義容器尺寸:
.container { width: 100%; height: 100%; }
設定光斑的樣式,其中定義了偏亮和偏暗的2 個顏色變數:
.container { position: relative; } .container span { --bright-color: #d4ff00; --dark-color: #e1ff4d; position: absolute; width: 30px; height: 30px; margin-left: -15px; margin-top: -15px; background: radial-gradient(var(--bright-color), var(--dark-color)); border-radius: 50%; box-shadow: 0 0 25px 3px var(--dark-color); }
把光斑定位到頁面中心:
.container span { transform: translateX(50vw) translateY(50vh); }
增加光點從中心向四周擴散和收縮的動畫效果:
.container span { animation: animate 1.5s infinite alternate; animation-delay: calc(var(--n) * 0.015s); } @keyframes animate { 80% { filter: opacity(1); } 100% { transform: translateX(calc(var(--x) * 1vw)) translateY(calc(var(--y) * 1vh)); filter: opacity(0); } }
定義動畫中用到的變數--x
、--y
和--n
:
.container span:nth-child(1) { --x: 20; --y: 30; --n: 1; } .container span:nth-child(2) { --x: 60; --y: 80; --n: 2; } .container span:nth-child(3) { --x: 10; --y: 90; --n: 3; }
設定容器的景深,使光斑的運動有從遠到近的感覺:
.container { perspective: 500px; } .container span { transform: translateX(50vw) translateY(50vh) translateZ(-1000px); }
至此,少量元素的動畫效果完成,接下來用d3 批次建立dom 元素和css 變數。
引入d3 庫,同時刪除html 檔案中的子元素和css 檔案中的子元素變數:
<script></script>
定義光斑粒子數量:
const COUNT = 3;
批次建立dom 元素:
d3.select('.container') .selectAll('span') .data(d3.range(COUNT)) .enter() .append('span');
為dom 元素設定--x
、--y
和--n
的值,其中--x
和--y
是1 到99 的隨機數:
d3.select('.container') /* 略 */ .style('--x', () => d3.randomUniform(1, 99)()) .style('--y', () => d3.randomUniform(1, 99)()) .style('--n', d => d);
再為dom 元素設定--bright-color
和--dark-color
的值:
d3.select('.container') /* 略 */ .style('--dark-color', (d) => d3.color(`hsl(${70 + d * 0.1}, 100%, 50%)`)) .style('--bright-color', (d) => d3.color(`hsl(${70 + d * 0.1}, 100%, 50%)`).brighter(0.15));
最後,把光點粒子數量設定為200 個:
const COUNT = 200;
大功告成!
#以上是如何使用CSS和D3實現光斑粒子交相輝映的效果 (附源碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!