示例
HTML
<canvas class="js-canvas"></canvas>
CSS
html,
body {
margin: 0;
padding: 0;
}
body {
overflow: hidden;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #000;
}
canvas {
background: #000;
}
JS
const distanceBetween = (vec1, vec2) => Math.hypot(vec2.x - vec1.x, vec2.y - vec1.y);
const simplex = new SimplexNoise();
const canvas = document.querySelector('.js-canvas');
const ctx = canvas.getContext('2d');
const TAU = Math.PI * 2;
const width = 500;
const height = 500;
const midX = width >> 1;
const midY = height >> 1;
const hypo = distanceBetween({ x: 0, y: 0 }, { x: midX, y: midY });
canvas.width = width;
canvas.height = height;
let frame = 0;
let phase = 0;
const phaseSpeed = 0.005;
class Trail {
constructor(position, angle, detail, spacing, velocity) {
this.position = position;
this.angle = angle;
this.heading = angle;
this.velocity = velocity;
this.spacingCurrent = 1;
this.spacing = spacing;
this.detail = detail;
this.trail = new Array(this.detail).fill();
this.initTrail();
}
initTrail() {
this.trail = this.trail.map((_, i) => {
return {
x: Math.cos(this.angle) * (this.spacingCurrent * i),
y: Math.sin(this.angle) * (this.spacingCurrent * i),
};
});
}
update(phase, index) {
const tip = { ...this.trail[this.detail - 1] };
const scale = 0.02;
const noise = simplex.noise3D(tip.x * scale, tip.y * scale, (this.angle + index) * scale);
const angleModifier = 0.75 * noise;
this.angle = this.heading + angleModifier;
const newTip = {
x: tip.x + (Math.cos(this.angle) * this.velocity),
y: tip.y + (Math.sin(this.angle) * this.velocity),
};
const totalTravelledPercent = distanceBetween({ x: 0, y: 0 }, newTip) / hypo;
const tipTravelPercent = distanceBetween(newTip, tip) / this.spacingCurrent;
for (let i = 0; i < this.detail - 1; i++) {
const p1 = this.trail[i];
const p2 = this.trail[i + 1];
p1.x += (p2.x - p1.x) * tipTravelPercent;
p1.y += (p2.y - p1.y) * tipTravelPercent;
}
this.trail[this.detail - 1] = newTip;
this.spacingCurrent = Math.max(2, this.spacing * totalTravelledPercent);
const hue = 150 + (50 * phase);
const lightness = 100 - (50 * totalTravelledPercent);
this.color = `hsl(${hue}, 100%, ${lightness}%)`;
}
isOutside(width, height) {
const [first] = this.trail;
const x = this.position.x + first.x;
const y = this.position.y + first.y;
return (x > width || x < 0 || y > height || y < 0);
}
draw(ctx) {
ctx.strokeStyle = this.color;
ctx.lineCap = 'round';
ctx.save();
ctx.translate(this.position.x, this.position.y);
for (let i = 0; i < this.trail.length - 1; i++) {
const width = (i / this.trail.length) * 10;
ctx.beginPath();
ctx.lineWidth = width;
ctx.moveTo(this.trail[i].x, this.trail[i].y);
ctx.lineTo(this.trail[i + 1].x, this.trail[i + 1].y);
ctx.stroke();
}
ctx.closePath();
ctx.restore();
}
}
let angle = 0;
let trails = [];
const addTrail = (angle) => {
const position = {
x: midX + Math.cos(angle),
y: midY + Math.sin(angle)
};
const velocity = 1.5 + (Math.random() * 0.25);
const detail = 6;
const spacing = 20;
const trail = new Trail(position, angle, detail, spacing, velocity);
trails.push(trail);
};
const drawOverlay = (ctx) => {
const fillOuter = ctx.createRadialGradient(midX, midY, 0, midX, midY, hypo);
fillOuter.addColorStop(0, 'rgba(37, 37, 37, 0)');
fillOuter.addColorStop(0.75, 'rgba(0, 0, 0, 1)');
ctx.fillStyle = fillOuter;
ctx.fillRect(0, 0, ctx.canvas.width, ctx.canvas.height);
const fillInner = ctx.createRadialGradient(midX, midY, 0, midX, midY, 100);
fillInner.addColorStop(0.05, 'rgba(0, 0, 0, 1)');
fillInner.addColorStop(0.5, 'rgba(0, 0, 0, 0)');
ctx.fillStyle = fillInner;
ctx.fillRect(0, 0, ctx.canvas.width, ctx.canvas.height);
};
const clear = () => {
ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
};
const loop = () => {
clear();
if (frame % 1 === 0) {
addTrail(angle);
frame = 1;
}
trails.forEach((trail, index) => {
trail.update(phase, index);
trail.draw(ctx);
});
trails = trails.filter(t => !t.isOutside(width, height));
drawOverlay(ctx);
ngle += 0.2;
frame += 1;
phase += phaseSpeed;
requestAnimationFrame(loop);
};
loop();
来源:CSDN
作者:盈嘉小红砖(同公众号)
链接:https://blog.csdn.net/weixin_45544796/article/details/104192242