{
const height = 300;
const ctx = DOM.context2d(width, height);
let h = height/2;
let n = 200;
let fq = width/n;
let points = Array.from({ length: n+1 }, (d, i)=> ({ x:i*fq, y:h }));
do {
ctx.beginPath();
let l = { x:0, y:h };
points.forEach((p) => {
p.y += (Math.random() - 0.5) * 2;
ctx.moveTo(l.x, l.y);
ctx.lineTo(p.x, p.y);
l.x = p.x;
l.y = p.y;
});
ctx.strokeStyle = "#fff";
ctx.stroke();
ctx.closePath();
yield ctx.canvas;
ctx.filter = "blur(10px) opacity(0.3)";
ctx.globalCompositeOperation = Math.random()>.6 ? 'screen' : 'difference';
ctx.drawImage(ctx.canvas, 0, 0, width, height);
ctx.filter = "blur(0px)";
} while( true );
}